function init(){
	
	document.getElementById("btn_prod").onmouseover = function(){document.getElementById("sub_produtos").style.display = 'block';}; 
	document.getElementById("btn_prod").onmouseout = function(){document.getElementById("sub_produtos").style.display = 'none';}; 
	document.getElementById("sub_produtos").onmouseout = function(){document.getElementById("sub_produtos").style.display = 'none';}; 
	document.getElementById("sub_produtos").onmouseover = function(){document.getElementById("sub_produtos").style.display = 'block';};

	
}

window.onload=init





