$(document).ready(function(){
	
	$("#btnHS div").hover(function(){
		
		$("#btnHS div").css({
			'color':'#c2a668',
			'background-image':'none'
		});		
		
		$(this).css({
			'background-image':'url(Photo/Home/homebtn1.gif)',
			'color':'rgb(255, 255, 255)'
		});	
		
		var foto = $(this).attr('id');
		$("#fotoHS").html('<img src="Photo/Home/' + foto + '.gif" />');
		
	});
	
	$("#btnHS div, #fotoHS img").click(function(){
		
		var rgs = $(this).attr('id');
		
		location.href='index.php?page=3&rgs=' + rgs
		
	});
	
	$(".linksPrincipais").click(function(){
		
		var id = $(this).attr('id');
		
		location.href='index.php?page=' + id;		
		
	});
	
	//responseAjax
	function responseSubmit(data){
		
		alert('Obrigado por Participar, seu voto foi Confirmado !!!')
		location.href='index.php';
			
	}//fim responseAjax
	
	$(".voto").click(function(){
		
		if(!$("input[name^=opt]:checked").attr('id')){
			
			alert('Erro: Selecione um Opção, para Confirmar seu Voto !!!');
			
		}else{
			
			$("#formEnquete").ajaxSubmit({  
				success: responseSubmit,
				type: 'post'
			});
			
		}
		
	});
	
});