// JavaScript Document
$(function() { 
    // setup ul.tabs to work as tabs for each div directly under div.panes 
    $("ul.tabs").tabs("div.panes > div"); 
});
//Opacidade das miniaturas
$(function() {

    $(".meio_destaques img").fadeTo(250, 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads

    $(".meio_destaques img").hover(function(){
            $(this).fadeTo(250, 0.5); // This should set the opacity to 100% on hover
        },function(){
            $(this).fadeTo(250, 1.0); // This should set the opacity back to 60% on mouseout
            
    });
});
//Superfish
jQuery(function(){
			jQuery('ul.sf-menu').superfish();
		});
//Default Value
jQuery(function($) {
			$("#pesquisa, #ex-textarea").defaultvalue("O que procura?", "Textarea value");
});
//Destaques carousel
$(function() {
    $("#destaques_carousel").jCarouselLite({
        btnNext: ".baixo",
        btnPrev: ".cima",
		vertical: true,
		auto: 3000,
		speed: 1200,
		visible: 1
    });
});