var Geral = {

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

}

$(document).ready(function(){
	Geral.__construct();

	$('.j-anima').cycle({ 
    fx:      'fade', 
    timeout: 8000,
	next:   '.seta-esquerda', 
    prev:   '.seta-direita',
	cleartypeNoBg: true
	});
	
	$('dl.orientacoes dd').hide();
	$('dl.orientacoes dt').css('cursor','pointer');
	$('dl.orientacoes dt').click(function(){
		$(this).next().slideToggle();								  
		
	});


});


