var homepage = new function(){
	function init(){
		nvp_parse();
		addEvent(document.getElementsByTagName("body")[0], "resize", resetCart);
		showWrap();
		entryfades();
		$(".fadeUp").click(function () { return false; });
	}	
	function entryfades(){
		var exist = false;		
		if(nvp_get('email') != 'noval'){ jEmailLink(); exist = true; }
		if(nvp_get('contact') == 'true'){ contactUsFadeUp(); exist = true; }
		if(nvp_get('privacy') == 'true'){ openPrivacyPolicy(); }
		if(nvp_get('investors') == 'true'){
			window.open('/anf/lifestyles/html/investorrelations.html','investor','toolbar=yes,status=yes,scrollbars=yes,resizable=yes,width=750,height=600');
		}
		if(nvp_get('casting') == 'true'){
			window.open('/anf/lifestyles/html/casting.html','casting', 'toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no,width=860px,height=484px');
		}		
		return exist;
	}	
	addEvent(window, "load", init);
}
