$(document).ready(function(){
	$("#abaCozinha, #abaConfeitaria").hide();
	$("#imgCozinha, #imgConfeitaria").css({
		"cursor":"pointer"
	});
	$("#imgCozinha").click(function(){
		$("#abaCozinha").slideDown();
		$("#abaConfeitaria").hide();
	});
	
	$("#imgConfeitaria").click(function(){
		$("#abaConfeitaria").slideDown();
		$("#abaCozinha").hide();
	});
});


$(document).ready(function(){
	$(".imgLimpaAco").append("<div style='clear:both;'></div>");
});




/*
	Função para alterar o texto das publicações e colocar a imagem das marcas no lugar

function alternaTextoImagem(){

	var path = "http://www.mgerais.com/site/wp-content/themes/mgerais/img/marcas/";
	var logomarca = "";
	var marca = $('.boxMarca em a').text();
	$.each(marca, function(){
		
		if( marca == "GE" ){
			logomarca = "bosch.jpg";
			$('.boxMarca em a').html(path+logomarca);
			alert(path+"/"+logomarca);
		}else{
			alert("Não corresponde");
			alert($('.boxMarca em a').text());
		}

	});
	
}

$(document).ready(function(){ alternaTextoImagem(); });
*/
/*
	Hover para listagem de produtos
*/
$(document).ready(function(){
	$('.boxTextoItem a')
	.mouseover(function(){
		var varQuery = $(this).attr('name');
		
		$('.boxItem.'+varQuery)
			.css({
				border:'1px solid #00608e',
				background:'#f5f5f5'
			});
			
		/*$('span.boxItemDetalhes.'+varQuery)
			.css({
				background:'url(../img/iconeDetalhes.png) no-repeat left top'
			});	*/
		
		$('a[name='+varQuery+']')
			.css({
				'text-decoration':'none'
			});		
		
	})
	.mouseout(function(){
		var varQuery = $(this).attr('name');
		
		$('.boxItem.'+varQuery)
			.css({
				border:'1px solid #fff',
				background:'#fff'
			});
			
		/*$('span.boxItemDetalhes.'+varQuery)
			.css({
				background:'none'
			});*/	
		
		$('a[name='+varQuery+']')
			.css({
				'text-decoration':'underline'
			});		
	});
});


/*
	Menu Produtos e marcas
*/
var menu=function(){
	var t=15,z=50,s=6,a;
	function dd(n){this.n=n; this.h=[]; this.c=[]}
	dd.prototype.init=function(p,c){
		a=c; var w=document.getElementById(p), s=w.getElementsByTagName('ul'), l=s.length, i=0;
		for(i;i<l;i++){
			var h=s[i].parentNode; this.h[i]=h; this.c[i]=s[i];
			h.onmouseover=new Function(this.n+'.st('+i+',true)');
			h.onmouseout=new Function(this.n+'.st('+i+')');
		}
	}
	dd.prototype.st=function(x,f){
		var c=this.c[x], h=this.h[x], p=h.getElementsByTagName('a')[0];
		clearInterval(c.t); c.style.overflow='hidden';
		if(f){
			p.className+=' '+a;
			if(!c.mh){c.style.display='block'; c.style.height=''; c.mh=c.offsetHeight; c.style.height=0}
			if(c.mh==c.offsetHeight){c.style.overflow='visible'}
			else{c.style.zIndex=z; z++; c.t=setInterval(function(){sl(c,1)},t)}
		}else{p.className=p.className.replace(a,''); c.t=setInterval(function(){sl(c,-1)},t)}
	}
	function sl(c,f){
		var h=c.offsetHeight;
		if((h<=0&&f!=1)||(h>=c.mh&&f==1)){
			if(f==1){c.style.filter=''; c.style.opacity=1; c.style.overflow='visible'}
			clearInterval(c.t); return
		}
		var d=(f==1)?Math.ceil((c.mh-h)/s):Math.ceil(h/s), o=h/c.mh;
		c.style.opacity=o; c.style.filter='alpha(opacity='+(o*100)+')';
		c.style.height=h+(d*f)+'px'
	}
	return{dd:dd}
}();


/*
 * Rotator de marcas
 */

$(document).ready(function() {
    $('.rotator-marcas').cycle({
		fx:     'scrollDown', 
    	speed:   500, 
    	timeout: 10000
	});
});

$(
	function(){
		$('.sub-menu').hide();
		
		$('#mn1').click(function(){
			$('#sub-eletro-house').slideDown();
			$('#sub-utility-house, #sub-portable-house, #sub-accessories').slideUp();
		});
		
		$('#mn2').click(function(){
			$('#sub-utility-house').slideDown();
			$('#sub-eletro-house, #sub-portable-house, #sub-accessories').slideUp();
		});
		
		$('#mn3').click(function(){
			$('#sub-portable-house').slideDown();
			$('#sub-eletro-house, #sub-utility-house, #sub-accessories').slideUp();
		});
		
		$('#mn4').click(function(){
			$('#sub-accessories').slideDown();
			$('#sub-eletro-house, #sub-utility-house, #sub-portable-house').slideUp();
		});
		
		
	}
);







