/* Funcionamento do menu dropdown para IE 6 */
over = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
			//alert(this.attributes["id"].value + " - " + this.className);			
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", over);


function carregaflash(arquivo,flashvars,largura,altura)
{
	//alert(flashvars);
	document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" WIDTH="' + largura + '" HEIGHT="' + altura + '" id="flash" ALIGN="top"><PARAM NAME=movie VALUE="' + arquivo +'"><PARAM NAME=loop VALUE=false><param name="FlashVars" value="'+flashvars+'"><PARAM NAME=quality VALUE=best><PARAM NAME=wmode VALUE=transparent><PARAM NAME=salign VALUE=LT><PARAM NAME=wmode VALUE=transparent><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="' + arquivo + '" loop=false quality=best salign=LT bgcolor=#FFFFFF wmode=transparent WIDTH="' + largura + '" HEIGHT="' + altura + '" FlashVars="'+ flashvars +'" NAME="flash" ALIGN="top" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
}

function popupFotos(url,height,width){
	window.open(url,"popupFotos","height=314, width=400,resizable=1'");
	//alert(width);
}
