var Geral = {

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

}

$(document).ready(function(){
	Geral.__construct();
	$('#anima-second').cycle({
		fx: 'fade',
		timeout: 6000 ,
		next: '.proximo',
		prev: '.anterior'
	});
	$('.anima').cycle({ 
	fx:      'uncover', 
	 width: 400,  
     height: 300, 
	
	timeout: 6000 ,
    delay:   -2000 ,
		next: '.seta-direita',
		prev: '.seta-esquerda'
	});
	
	
	$('.conheca-natal').cycle({ 
	fx:      'fade', 
	timeout: 4000 ,
    delay:   -2000 
	});
	
	
	$('.anima02').cycle({ 

	fx:      'custom', 
	timeout: 6000 ,
    cssBefore: {  
        left: 115,  
        top:  115,  
        width: 0,  
        height: 0,  
        opacity: 1, 
        zIndex: 1 
    }, 
    animOut: {  
        opacity: 0  
    }, 
    animIn: {  
        left: 0,  
        top: 0,  
        width: 630,  
        height: 320  
    }, 
    cssAfter: {  
        zIndex: 0 
    }, 
    delay: -3000 ,
		next: '#arrow_Rt',
		prev: '#arrow_Lt'

	});
	
	
});