// ifixpng - FIX PNG IE6
//$(window).ready(function(){			
//	$('#header *, #home *, #cotacao *, #contato *, #institucional *, #produtos *, #aplicacoes *, #servicos *').ifixpng();
//});

$(document).ready(function(){
	// LISTRAS				   
	$('.box-c ul.list-a li:even').css('backgroundColor','#e0e0e0');
	$('.box-c ul.list-b li:even a.link').css('backgroundColor','#e0e0e0');
	$('#feiras-eventos ul#lista-fe li:even').css('backgroundColor','#dadada');
	$("#represent ul#lista-rp li:even").css("backgroundColor", "#dadada");
	// FIM LISTRAS
				
	// MENU-ABA			
	$('#menu-aba ul li:first').addClass('on');
	
	$('#menu-aba ul li').click(function(event){
		event.preventDefault();								
		$(this).siblings().removeClass('on');		
		$(this).addClass('on');											
	});
	
	$('#menu-aba .busca:not(:first)').hide();
	
	$('#menu-aba ul a').click(function(){
		var hrefCurr = $(this).attr('href');
		$('#menu-aba .busca').hide();
		$('#menu-aba '+ hrefCurr +'').fadeIn(300);	
	});
	// FIM MENU-ABA	
	
	
/*	var vInput;
	
	$('input:text').focus(function(){
		vInput = this.value;
		if (this.value == vInput) 
			{ this.value = '' };
	});
	$('input:text').blur(function(){
		if (this.value == '') 
			{ this.value = vInput };
	});*/
	
	
	// MENU
	$("#menu ul").css({display:"none"});
	$('#menu li').hover(function(){								 	
		$(this).find('ul:first').css({visibility: "visible"}).show(200);
		$(this).find('a.mlink').addClass('hover');
		$(this).find('span.l').addClass('hover');
		$(this).find('span.r').addClass('hover');
	}, 
      function () {		 
		$(this).find('ul:first').css({visibility: "hidden"});
        $(this).find('a.mlink').removeClass('hover');
		$(this).find('span.l').removeClass('hover');
		$(this).find('span.r').removeClass('hover');
    }
	);
	
	// FIM  MENU
		
});
	