tms=new Array()

//Mostra o submenu no mouseover
function over(n){
	if(typeof(tms[n])!="undefined")clearTimeout(tms[n])
	document.getElementById("sub"+n).style.display="block";
	
}
//Esconde o submenu no mouseout
function out(n){
	aberto = 15; //tempo que o submenu fica aberto
	tms[n]=setTimeout('document.getElementById("sub'+n+'").style.display="none"',aberto);
	//background:url("imgs/menu_fundo_sobre.gif") no-repeat;

}
