 $(document).ready(
	function() {
		$('#flash').flash({swf: 'www/swf/topo.swf', wmode: 'transparent', width: 990, height: 360});
		$('#ezoom').flash({swf: 'www/swf/logoEzoom.swf?cor=0x6e6e6e', wmode: 'transparent', width: 100, height: 40});
		
		$('#contato').find('input[type="submit"]').click(function(e) {
			$('#loading').ajaxStart(function(){
		    	$('#alvo').hide();
		        $('#loading').show();   
		    });
		    $('#loading').ajaxStop(function(){
		    	$('#loading').hide();   
		    });  
			$.post('includes/envia_contato.php',
    	    {
				nome: $('input[name="nome"]').val(), 
				email: $('input[name="email"]').val(), 
				telefone: $('input[name="telefone"]').val(), 
				assunto: $('input[name="assunto"]').val(), 
				mensagem: $('input[name="mensagem"]').val(), 
				enviar: 1
			},
				
	    	    function(data){
	    	    	$('#alvo').show();
	    	    	$('#alvo').empty().html(data);
	    	    }
    	    );	
		});
		
		$('.categoria').hover(function(e) {
			$(this).fadeTo('fast', 0.6);
		});
		
		$('.categoria').mouseout(function(e) {
			$(this).fadeTo('fast', 1);
		});
	}
);
