$urlParse = explode("/", $_SERVER['REQUEST_URI']);
$urlLenght = count($urlParse);
if (urlLenght >= 2):
$this->index = $urlParse[1];
$this->indexMenupoint = $this->M_Menu->getMenupointByIndex($this->index);
if (urlLenght >= 3):
$this->category = $urlParse[2];
$this->categoryMenupoint = $this->M_Menu->getMenupointByIndex($this->category);
if (urlLenght >= 4):
$this->subCategory = $urlParse[3];
$this->subCategoryMenupoint = $this->M_Menu->getMenupointByIndex($this->subCategory);
endif;
endif;
endif;