

function P7_ExpMenu(){ //v1.1.0.2 by PVII-www.projectseven.com
 if(navigator.appVersion.indexOf("MSIE")==-1){return;}
 var i,k,g,lg,r=/\s*p7hvr/,nn='',c,cs='p7hvr',bv='p7menubar';
 for(i=0;i<10;i++){g=document.getElementById(bv+nn);if(g){
 lg=g.getElementsByTagName("LI");if(lg){for(k=0;k<lg.length;k++){
 lg[k].onmouseover=function(){c=this.className;cl=(c)?c+' '+cs:cs;
 this.className=cl;};lg[k].onmouseout=function(){c=this.className;
 this.className=(c)?c.replace(r,''):'';};}}}nn=i+1;}
 
}

	function detect()
	{
		if(screen.height<=800)// || screen.width==1024 || (screen.width==1280 && screen.height==600)|| (screen.width==1280 && screen.height==720))
		{
			document.getElementById("outercontainer").className="Container2"
		}
		else
		{
			document.getElementById("outercontainer").className="Container"
		}
		
		var browserVer=navigator.appVersion;  
		if(browserVer.indexOf('Safari')!=-1 )
		{
			var theRules = new Array();
			if (document.styleSheets[1].cssRules) 
			{
				theRules = document.styleSheets[1].cssRules;
				
			} 
			else if (document.styleSheets[1].rules) 
			{
				theRules = document.styleSheets[0].rules;
			}
			for(i=0;i<theRules.length;i++)
			{
				if(theRules[i].selectorText.toLowerCase()=="#p7menubar a")
				{
					theRules[i].style.padding = '10px 31px 10px 26px';
				}
			}
		}
	}
