document.observe('dom:loaded', function () 
	{ 
	
	$$('.sub_menu').each(function(el) {
		el.hide();
		});
	
	// currNav is defined in info.tpl
	
	if(currNav == 'sm_franchise_germany' || currNav == 'sm_franchise_international'){
		currNav = 'sm_franchise';
	}
	
	if(currNav == 'sm_kidsshoes_system' || currNav == 'sm_kidsshoes_bama' || currNav == 'sm_kidsshoes_parents'){
		currNav = 'sm_kidsshoes';
	}

	if(currNav == 'sm_kidsweb_ricki_kuno' || currNav == 'sm_kidsweb_spiel_spass'){
		currNav = 'sm_kidsweb';
	}
	
	if(currNav == 'sm_quality' || currNav == 'sm_philosophy' || currNav == 'sm_group' || currNav == 'sm_expansion' || currNav == 'sm_philosophy'|| currNav == 'sm_contact'|| currNav == 'sm_privacy'|| currNav == 'sm_agb'|| currNav == 'sm_imprint'){
		currNav = false;
	}

	if(currNav){
		$(currNav).show();
	}
	
	
	
	


}); 


