<!--
//#############################################################
function loadSwf(ban_widht,ban_height,ban_j,ban_swf){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + ban_widht + '" height="' + ban_height + '">');
	document.writeln('  <param name="movie" value="' + ban_swf + '" />');
	document.writeln('  <param name="quality" value="high" />');
	document.writeln('  <param name="wmode" value="opaque" />');
	document.writeln('  <param name="swfversion" value="6.0.65.0" />');
	document.writeln('  <param name="expressinstall" value="Scripts/expressInstall.swf" />');
	document.writeln('  <param name="flashvars" value="j=' + ban_j + '">');
	document.writeln('  <!--[if !IE]>-->');
	document.writeln('  <object type="application/x-shockwave-flash" data="' + ban_swf + '" width="' + ban_widht + '" height="' + ban_height + '">');
	document.writeln('    <!--<![endif]-->');
	document.writeln('    <param name="quality" value="high" />');
	document.writeln('    <param name="wmode" value="opaque" />');
	document.writeln('    <param name="swfversion" value="6.0.65.0" />');
	document.writeln('    <param name="expressinstall" value="Scripts/expressInstall.swf" />');
	document.writeln('    <param name="flashvars" value="j=' + ban_j + '">');
	document.writeln('    <div>');
	document.writeln('      <h4>O conte&uacute;do desta p&aacute;gina requer uma vers&atilde;o mais recente do Adobe Flash Player.</h4>');
	document.writeln('      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Obter Adobe Flash player" width="112" height="33" /></a></p>');
	document.writeln('    </div>');
	document.writeln('    <!--[if !IE]>-->');
	document.writeln('  </object>');
	document.writeln('  <!--<![endif]-->');
	document.writeln('</object>');
}
//#############################################################
function horizontal(){
	var navItems = document.getElementById("dropdown").getElementsByTagName("li");
	for (var i=0; i< navItems.length; i++){
		if(navItems[i].className == "item"){
			if(navItems[i].getElementsByTagName('ul')[0] != null){
				navItems[i].onmouseover=function(){this.getElementsByTagName('ul')[0].style.display="block";this.style.backgroundColor = "#f9f9f9";}
				navItems[i].onmouseout=function(){this.getElementsByTagName('ul')[0].style.display="none";this.style.backgroundColor = "#FFFFFF";}
			}
		}
	}
}
//#############################################################
-->