public function getStoreHierarchy()
 {
     if (self::$storeHierarchy != null && empty(self::$storeHierarchy)) {
         if (self::$storeId == null) {
             $store = Mage::app()->getStore();
         } else {
             $store = Mage::getModel('core/store')->load(self::$storeId);
         }
         $website = $store->getWebsite();
         self::$storeHierarchy = array('website_' . $website->getId() => $website->getName(), 'store_' . $store->getId() => $store->getName());
     }
     return self::$storeHierarchy;
 }