$(document).ready(function(){
		
		$(".lightbox").lightbox();
		
		$(".motivo").change(function() {
			
			if ($(this).val() == "Reservas") {
				$(".reserva").css("display","block");
				} else {
				$(".reserva").css("display","none");
				}
			
		});
		
		$(".miniatura").click(function() {			
			$(".imagem_ampliada").html($(this).find("span").html());			
		});

		$(".mostra_oculta").hover(
		function () {
		$(".r_foto_caes").html($(this).next().html());		
		}, 
		function () {
		$(".r_foto_caes").html("<img src=\"/images/sem_foto.jpg\" alt=\"Sem foto\" />");
		}
		);	
		
		$("dl.dicas dd").each(function(){ //Esconde todas...
	   this.style.display = "none";   
		});
	 
		$("dl.dicas dt").click(function(){

			$(this).next().slideToggle("fast");
			
		});


		$("dl.dicas dt").hover( //Muda a cor do fundo quando mouse acima...
		 function(){
			//$(this).addClass("overdicas");
			$(this).css("background-color","#bab878");
			$(this).css("cursor","pointer");
		}, function() {
			//$(this).removeClass("overdicas");
			$(this).css("background-color","#c8c793");
		}
		);

	
	});	
