//################################################################
//################################################################
//################################################################
//#######INSERIR NESTE ARQUIVO TODOS AS FUNÇÕES DE SCRIPTS DO SITE

//script responsável pelo slider
$(function() {
	
    $(".slider-images").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		visible: 1,
		easing: "easeout",
		auto: 4000,
		speed: 1000
    });
	//slider de texto	
	$(".slidertext").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		vertical: true,
		visible: 1,
		easing: "easeout",
	 	auto: 4000,
		speed: 1000
    });

	ddsmoothmenu.init({
	mainmenuid: "smoothmenu1", //menu DIV id
	orientation: 'h', //Horizontal or vertical menu: 'h' ou 'v'
	classname: 'ddsmoothmenu', //classe que adiciona outras divs ao menu
	contentsource: "markup" //"markup" ou ["container_id", "path_to_menu_file"]
})
	 
});

//script responsável pelo efeito de opacidade dos icones do rodapé    
$(function(){
	$('.gallery img, .footer-right img').animate({
		"opacity" : .4
	});
            
	$('.gallery img, .footer-right img').hover(function(){
		$(this).stop() .animate({ "opacity" : 1 });
	}, function(){
		$(this).stop() .animate({"opacity" : .4})
	});
});


//Função accordion 'about'




