////////////////////////////////////////////////////////
function addLoadEvent(func) {   
   var oldonload = window.onload;   
   if (typeof window.onload != 'function') {   
     window.onload = func;   
   } else {   
     window.onload = function() {   
       if (oldonload) {   
         oldonload();   
       }   
       func(); 
     }   
   }   
 }  
////////////////////////////////////////////////////////
addLoadEvent(
	function(){
	}
);

////////////////////////////////////////////////////////
function sh(id,action){
	if(action == "s"){
		document.getElementById(id).style.visibility = "visible";
		document.getElementById(id).style.display = "block";
				
	}else{
		document.getElementById(id).style.visibility = "hidden";
		document.getElementById(id).style.display = "none";
	}
}
////////////////////////////////////////////////////////
function shProdNav(id,action){
	
	if(action == "s"){
			setTimeout("ProdNavReset()",5);
			setTimeout("prodNavAdj('"+id+"')",10);
			setTimeout("sh('"+id+"','s')",15);	
	}else{
		sh(id,'s');
	}
	
}
////////////////////////////////////////////////////////
function prodNavAdj(id){
		var mainW = document.getElementById("productSecondLevelCon").offsetWidth;
		var mainWAdj = mainW;
		document.getElementById(id).style.marginLeft = mainWAdj + "px";
		document.getElementById(id).style.marginTop = "-27px";
		
}
function ProdNavReset(){
	var divs=document.getElementsByTagName('div') 
	for (var i=0;i<divs.length;i++){ 
		if (divs[i].className == "thirdLevelCon"){
			sh(divs[i].id,'h');
		}
	}
	return true;
}
