function flash(file, width, height){
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='" + width + "' height='" + height + "'> \n");
    document.write("<param name='movie' value='" + file + "'>\n");
    document.write("<param name='quality' value='high'> \n");
    document.write("<param name='wmode' value='transparent'> \n");
    document.write("<embed src='" + file + "' quality='high' wmode='transparent' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='" + height + "'></embed> ");
    document.write("</object>");
}
function carregando(){
   b = document.body.scrollHeight;
   document.getElementById("loading").style.height = b;
   document.getElementById("oading").style.backgroundColor="#628f5c";
}
function troca_menu(id){
	document.getElementById('menu1').className='';
	document.getElementById('menu2').className='';
	document.getElementById('menu3').className='';
	document.getElementById('menu4').className='';
	document.getElementById('menu5').className='';

	document.getElementById(id).className='selected';
}

