var Geral = {

	__construct: function() {
		_this = Geral;
	}

}

$(document).ready(function(){
	Geral.__construct();
	
	$('dl#navigation dd').hide();
	$('dl#navigation dt').css('cursor','pointer');
	$('dl#navigation dt').click(function(){
		$('dd').slideUp();
		$(this).next().slideToggle();								  
		
	});
	
	
	
	//botar aq
	$('.j-img').cycle({ 
	fx:      'scrollLeft,scrollDown,scrollRight,scrollUp,wipe', 
	timeout: 4000 ,
    delay:   -1000 
	});
	
	$('.jquery-sal').cycle({ 
	fx:      'scrollHorz', 
	timeout: 4000 ,
    delay:   -1000 ,
	next: '#arrow-right',
	prev: '#arrow-left'
	});
	
});

