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', 
	 width: 283,  
     height: 315, 
	
	timeout: 6000 ,
    delay:   -2000,
		next: '.proxima',
		prev: '.anterior'
	});
	
$('#anime').cycle({ 
	fx:      'fade', 
	
	timeout: 6000 ,
    delay:   -2000,
		next: '.arrow-right',
		prev: '.arrow-left'
	});
	
	
	$(".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;					 
	});
	
	
	$('dl#navigation dd').hide();
	$('dl#navigation dt').css('cursor','pointer');
	$('dl#navigation dt').click(function(){
		$('dd').slideUp();
		$(this).next().slideToggle();								  
		
	});
	

});