$(document).ready(function() {

	// Destaque principal
	$('#destaques-grandes .lista').cycle({ 
	    fx:     'fade', 
	    timeout: 5000, 
	    before:  onBefore
	 });
	
	$('.type-text input, .type-text textarea').defaultvalue();

	$("#menu a").tooltip({ 
		track: true, 
		delay: 0, 
		fixPNG: false,
		showURL: false, 
		fade: true,
		showBody: " - ",
		extraClass: "tooltip",
		top: 22,
		left: -30
	});
	
	$('#merenda .lista').jCarouselLite({ btnPrev: "#merenda .esq", btnNext: "#merenda .dir", visible: 3});
		
	// Prettybox
	$("a[rel^='prettyOverlay'],a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed: 'normal', 
		padding: 40, 
		opacity: 0.85, 
		showTitle: true, 
		allowresize: 1 	
	});

});

function onBefore(){
	//alert(this.id);
	$(".selecionada").each(function (i) {
          this.className = "";
    });
	$("#aba_"+this.id).attr("class","selecionada");
} 

// Adicionando aos favoritos
function bookmarksite(){
	if (document.all)
		window.external.AddFavorite(location.href, document.title);
	else if (window.sidebar)
		window.sidebar.addPanel(document.title, location.href, "")
}