

var currentPage = window.location.href;
var menuSection = '';

currentPage = currentPage.replace("http://dev.unitednude.com", "");
currentPage = currentPage.replace("http://www.unitednude.com", "");
currentPage = currentPage.replace("https://www.unitednude.com", "");

urlsExact = new Array();
urlsExact = {
	'/':'0',
	'/index.php':'0',
	'/spring_summer2010.php':'1',
	'/all-the-classics-c-191_192.html':'10',
	'/the-classics-mobius-c-191_192_195.html':'100',
	'/the-classics-eamz-c-191_192_196.html':'101',
	'/the-classics-loop-c-191_192_333.html':'102',
	'/the-classics-ruby-c-191_192_203.html':'103',
	'/the-classics-block-c-191_192_200.html':'104',
	'/the-classics-stealth-c-191_192_198.html':'105',
	'/the-classics-cup-c-191_192_343.html':'106',
	'/the-classics-fold-c-191_192_199.html':'107',
	'/the-classics-elastic-c-191_192_213.html':'108',
	'/the-classics-graffiti-c-191_192_373.html':'109',
	'/the-classics-lores-c-191_192_233.html':'1010',
	'/the-classics-label-shoe-c-191_192_393.html':'1011',
	
	
	'/all-ultra-collection-c-191_193.html':'11',
	'/ultra-collection-cosmo-c-191_192_204.html':'110',
	'/ultra-collection-frame-c-191_193_353.html':'111',
	'/ultra-collection-ultra-mobius-c-191_192_205.html':'112',
	'/ultra-collection-ultra-loop-c-191_193_363.html':'113',
	
	'/all-mono-series-c-191_194.html':'12',
	'/mono-series-mono-jane-c-191_192_206.html':'120',
	'/mono-series-monolo-c-191_192_207.html':'121',
	'/mono-series-coral-c-191_194_383.html':'122',
	
	'/all-c-191.html':'13',
	'/projects.php':'2',
	'/collaborations.php':'20',
  '/antoinepeters.php':'200',
	'/kswiss.php':'201',
	'/223.php':'202',
	'/drsky.php':'203',
	'/lookbooks.php':'21',
	'/lookbooks_ss10.php':'210',
	'/lookbooks_aw09.php':'211',
	'/unpress.php':'3',
	'/presscentre':'3'
};


urlsPart = new Array();
urlsPart = {
	'classics-mobius-':'100',
	'classics-eamz-':'101',
	'classics-loop':'102',
	'classics-ruby':'103',	
	'classics-block':'104',
	'classics-stealth-':'105',
	'classics-cup':'106',
	'classics-fold':'107',
	'classics-elastic':'108',
	'classics-graffiti':'109',
	'classics-lores':'1010',
	'classics-label-':'1011',
	
	'cosmo-':'110',
	'ultra-mobius-':'111',
	
	'mono-jane-':'120',
	'monolo-':'121',
	'mono-eamz-':'122'
	};

for(var index in urlsExact) {
	
	if(currentPage == index) {
		menuSection = urlsExact[index];
		break;
	}
}

if (menuSection == '') {
	for(var index in urlsPart) {
		if(currentPage.indexOf(index) >= 0) {
			menuSection = urlsPart[index];
			break;
		}
	}
}