$(function(){

	$("#btBanner li").hover(function(){
		$(this).css('cursor','pointer');
		if("concorra" == $(this).attr('class'))
			$(this).css('background-position','0px 79px');
		else {
			$(this).css('background-position','0px 60px');
			var imagem = $(this).attr('class');

			$("#imgBanner img").each(function() {
				if(imagem != $(this).attr('id'))
					$(this).attr('class','hidden');
				else
					$(this).attr('class','');
			});
		}
	},function(){
			$(this).css('background-position','0px 0px');
			$("#imgBanner img").each(function(){
				$(this).attr('class','hidden');
			});
			$("#resultado_ou_dinheiro").attr('class','');
	});

	$("#enviarDicas").click(function(){

	});

	$("#btBanner li").click(function(){
		acao = $(this).attr('class');
		if("mantenhaSaude" == acao)
			window.location.href = "/mantenha-a-saude";
		if("percaPeso" == acao)
			window.location.href = "/perca-peso";
		if("treine" == acao)
			window.location.href = "/treine-e-divirta-se";
		if("corpoAtraente" == acao)
			window.location.href = "/tenha-um-corpo-atraente";
		if("fiqueSarado" == acao)
			window.location.href = "/fique-sarado";
		if("concorra" == acao)
			window.location.href = "/concorra";
	});
});