inforM=new Array()
//Mostra as fotos DA miniatura
function overM(n){
	if(typeof(inforM[n])!="undefined")clearTimeout(inforM[n])
	document.getElementById("inf"+n).style.visibility="visible"
}
//ESCONDE A FOTO DA MINIATURA
function outM(n){
	inforM[n]=setTimeout('document.getElementById("inf'+n+'").style.visibility="hidden"',5)
}

inforF=new Array()
//ESCONDE O FLASH
function overF(n){
	if(typeof(inforF[n])!="undefined")clearTimeout(inforF[n])
	document.getElementById("fla"+n).style.visibility="hidden"
}
//MOSTRAR O FLASH
function outF(n){
	inforF[n]=setTimeout('document.getElementById("fla'+n+'").style.visibility="visible"',5)
}
