var topbtnID = 1;
 function topmenumove(id){
	    if(topbtnID != id)
		{
		var d=document.getElementById("topm"+id);
		d.className = "topm_"+id+"_mouseover";
		}
}
function topmenumout(id){
	  if(topbtnID != id)
	  {
	var d=document.getElementById("topm"+id);	
    setTimeout(function(){d.className = "topm_"+id+"_default"},200);
	}
}
function topmenuchick(id){	 
		var d=document.getElementById("topm"+id);
		if(topbtnID >0)
		{
			var a=document.getElementById("topm"+topbtnID);
			a.className = "topm_"+topbtnID+"_default";
		}
		d.className = "topm_"+id+"_onmousedown";
		topbtnID = id;
}
var original ="sale_01";
function showDiv(id){
if(original){
document.getElementById(original).style.display="none";
}
document.getElementById(id).style.display="block";
original = id;
}


