window.addEvent("domready",function(){
	if($('header')){
		$('header').adopt(new Swiff('swf/logo.swf',{
			id:'logo',
			width:770,
			height:120,
			params:{
				wmode:'opaque',
				bgcolor:'#fff'
			}
		}));
	}
	if($('qprm')){
		$('qprm').addEvent("mousedown",function(){
			if($('qprm').value=="Pesquisar"){
				$('qprm').value="";
				$('qprm').setStyles({
					'text-align':'left',
					'color':'#000',
					'font-style':'normal'
				});
			}
		});
		$('qprm').addEvent("blur",function(){
			if($('qprm').value=="" || $('qprm').value=="Pesquisar"){
				$('qprm').value="Pesquisar";
				$('qprm').setStyles({
					'text-align':'right',
					'color':'#999',
					'font-style':'italic'
				});
			}
		});
	}
	$$('.hover').each(function(e){
		e.setStyle("opacity",.6);
		e.addEvent("mouseover",function(){
			e.tween('opacity',1);
		});
		e.addEvent("mouseout",function(){
			e.tween('opacity',.6);
		});
	});
});


function cadastroSite(){
	$('cadastro').submit();	
}