// JavaScript Document
$(document).ready(function(){
	$("#form-newsletter input").mouseover(function(){
		$(this).css('background','#e0e0e0');
	});
	$("#form-newsletter input").mouseout(function(){
		$(this).css('background','#fff');
	});
	
	/*********ENQUETE***********/
	
	$('#verResult').click(function() {
		$('#form-enquete').fadeOut(10);
		$('#resultado').show('slow');
	})
	
	$('#votar').click(function() {
		$('#resultado').fadeOut(10);
		$('#form-enquete').show('slow');
	})	
});
