$(function () {    // Fun��o que abre a janela de chamados    $('#homeChamados div.select a').click(function(){        $('#homeChamados').toggleClass('ativo');    });        // Noticias    var newsoption1 = {		firstname: "mynews",		secondname: "showhere",		thirdname:"news_display",		fourthname:"news_button",		mouseover:false,		newsspeed:'6000'	}	$.init_news(newsoption1);	    // Destaques    var newsoption2 = {		firstname: "mynews2",		secondname: "showhere2",		thirdname:"news_display2",		fourthname:"news_button2",		mouseover:false,		newsspeed:'6000'	}	$.init_news(newsoption2);            // Popup enquete    var speed = 300;	$('.enqueteVotar').click(function() {		$('#popOverlay').fadeIn(300);		$('body').addClass('overlay');	});	$('#popOverlay div.titBar a.btFechar').click(function() {		$('#popOverlay').fadeOut(speed);		$('body').removeClass('overlay');	});            // Esteira de logos    $("#esteiraLogosList").jCarouselLite({        btnNext: "#esteiraLogos .direita",        btnPrev: "#esteiraLogos .esquerda",        visible: 6,		speed: 400,        auto: 2000    });                // Funcionamento das abas da home    var tabContainers = $('div.tabs > div');    tabContainers.hide().filter(':first').show();        var seleciona = $('input:hidden[name=selecionado]').val();        $('div.tabs ul.abas a').click(function () {            tabContainers.hide();            tabContainers.filter(this.hash).show();            $('div.tabs ul.abas a').removeClass('ativo');            $(this).addClass('ativo');            return false;    }).filter('#'+seleciona).click();    $('#<?php echo parametrosValor("aba_home");?>').click();    });
