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',
	timeout: '5000',
    delay:  -3000, 
	prev: '.seta-esquerda',
	next: '.seta-direita',
	cleartypeNoBg: true
	});
	
	$('.conheca-anima').cycle({ 
    fx:     'fade',
    delay:  -2000 
	});
	
	$('.img-ani').cycle({
	next: '#seta-dir',
	prev: '#seta-esq',
		cleartypeNoBg: true
	});

});


