// DESTAQUES DA HOME - FAZER O FADE
$(document).ready(function(){
	var botao = $('#destaques.home li a');

	$(botao).hover(function(event) {
		$($(this).children()[1]).fadeIn("slow");
	},
	
	function(event) {
	    $($(this).children()[1]).fadeOut("slow");   
	});
});

// GOOGLE ANALYTICS - CHAMADA
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

	
// CONTROLAR PÁGINAS INTERNAS DE EMPRESA
$(document).ready(function(){
	// DEFINIR ABERTO DE DEFAULT
	var botoes = $('#botoes a');
	var conteudo = $('#coluna-fixa div')
	$('#botoes a.bt-sobre').addClass('current');
	$('#coluna-fixa #sobre').css('display', 'block');
	
	// FUNÇÕES DO MENU PARA CONTROLAR OS CONTEÚDOS
		botoes.click(function(){
		botoes.removeClass('current');
		$(this).addClass('current');

		var posicaoBotao = botoes.index(this);
		
		conteudo.css('display', 'none');
		$(conteudo[posicaoBotao]).slideDown();

		return false;
	});
});

// CONTROLAR GALERIAS DO LIGHTBOX
$(document).ready(function(){
	//$(function() {
        $('#sobre a[rel*=lightbox-empresa]').lightBox();
		$('#responsabilidade a[rel*=lightbox-responsabilidade]').lightBox();
		$('#premios a[rel*=lightbox-premios]').lightBox();
		$('#alimentos a[rel*=lightbox-alimentos]').lightBox();
		$('#industria a[rel*=lightbox-industria]').lightBox();
		$('#praticook a[rel*=lightbox-praticook]').lightBox();
		$('#praticake a[rel*=lightbox-praticake]').lightBox();
		$('#praticice a[rel*=lightbox-praticice]').lightBox();
		$('#pot a[rel*=lightbox-pot]').lightBox();
		$('#praticup a[rel*=lightbox-praticup]').lightBox();
    //});
});

$('#botoes a.bt-alimentos').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.alimentos').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens/alimentos");
});

$('#botoes a.bt-industria').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.industria').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens/industria");
});

$('#botoes a.bt-praticook').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.praticook').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens-especiais/praticook");
});

$('#botoes a.bt-praticake').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.praticake').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens-especiais/praticake");
});

$('#botoes a.bt-praticice').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.praticice').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens-especiais/praticice");
});

$('#botoes a.bt-pot').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.pot').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens-especiais/pot");
});

$('#botoes a.bt-praticup').click(function(){
	$('#destaqueFlash img').css('display', 'none');
	$('#destaqueFlash img.praticup').css('display', 'block');
	
	// CHAMADA DO GA
		var pageTracker = _gat._getTracker("UA-16963631-1");
		pageTracker._trackPageview("/pt-br/home/embalagens-especiais/praticup");
});









