var currentDiv='';
var h1d3r;
function productToggle(id,vis){
	if(document.getElementById||document.all){
		var element;
		if(document.getElementById&&!document.all){// NS6+
			element=eval(document.getElementById(id));
		}else{// IE4+
			element=eval(id);
		}
		if(vis==true){			
			window.clearTimeout(h1d3r);
			element.style.display='';
			currentDiv=id;
			//h1d3r=window.setTimeout('hideAll()',3000);
			
		}
		else{
			window.clearTimeout(h1d3r);
			element.style.display='none';
		}
	}
}
function hideAll(){
		productToggle('theProductLinks',false);
		window.clearTimeout(h1d3r);
}
function mouseoutToggle(){
	h1d3r = window.setTimeout('hideAll()',300);
}



