 var newCarsOver=false;
var init=false
var marginTopOver="62px";
var marginTopOut="-1000px";

var flashvars = {};				
var params = {};    
params.wmode="transparent"  
params.allowscriptaccess="always"

var attributes = {};
attributes.name="subNavID";
attributes.id="subNav";

swfobject.embedSWF("/level2_nav.swf", "subNav", "900", "350", "9.0.45.0", false, flashvars, params, attributes);



 function getMovieName(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
    	return window[movieName]
    }
    else {
   	 return document[movieName]
    }
   }


function holdSubNav(){
	newCarsOver=true;
	
}
function hideSubNav(){
	newCarsOver=false;
	setTimeout(hideSubMenu,500)	
}

function showSubNab(x,menu,show){
	
	
	if(show){
		//$("#subNav").show();
		
		getMovieName("subNav").callSetMenu(x,menu,true);
		
		newCarsOver=true;
		
		document.getElementById("subNav").style.zIndex=1;
		document.getElementById("subNav").style.width="900px";
		
	}
	else
	{
		newCarsOver=false;
		setTimeout(hideSubMenu,500)
		
		
	}	

}

function hideSubMenu(){
   
	if(!newCarsOver){
	
		document.getElementById("subNav").style.zIndex=0;
		document.getElementById("subNav").style.width="1px";
	
 		getMovieName("subNav").callSetMenu(0,null,false);
		
	}
	
}