var Geral = {

	__construct: function() {
		_this = Geral;
		$("input[type='text'],input[type='password'],textarea").resetDefaultValue();
		$("a.lightbox").lightBox();
	}

}

$(document).ready(function(){
	Geral.__construct();
	
	$('.anima').cycle({ 
    fx:     'fade', 
    delay:  -3000,
	prev:	'.seta-esquerda',
	next:	'.seta-direita'
	});
	
	$('#animacao-hotel .anima').cycle({ 
    fx:     'scrollVert',
	timeout: '30000',
	prev:	'.seta-cima',
	next:	'.seta-baixo'
	});

	$(".foto-maior img").css('display','none').slideDown();
	$(".foto-menor li a").click(function(){
		var linkfotao = $(this).attr("href");
		$(".foto-maior img").attr('src', linkfotao);
		$(".foto-maior img").fadeTo('', 0.7);
		$(".foto-maior img").fadeTo('', 1);
		return false;					 
	});

});

