$(function() {
	$('#carousel-marcas').jcarousel({
    });
	
	$("#tabs").tabs();
	
	$("#descTabs").tabs();
	
	if($('body').hasClass('home')){
	$('.home .prateleira:not(".home #tabs .prateleira, .prateleira.resultadoBusca")').vtexCarousel();
	};
	
	$('.home .prateleira-mask .prateleira').each(function(){
	var texto = $(this).find('h2').text();
	$(this).find('h2').remove();
	$(this).parent().parent().prepend('<h2>'+texto+'</h2>');
});

$(".home #sidebar .menu-departamento h3").each(function(){
		var lnk = $(this).find('a').attr('href');
		var nxt = $(this).next();
		nxt.after('<a href='+lnk+'>[ Veja mais ]</a>');
	});
	
$('.departamento #sidebar h5').next().after('<a href="#" id="expandir">[ Veja mais ]</a>');

var clicou = 0;

$('#expandir').click(function(e){
	
		e.preventDefault();
		if (clicou==0){
			$(this).prev().css('height', 'auto');
			$(this).text('[ Veja menos ]');	
			clicou=1;
		}
		else {
			$(this).prev().css('height', '220px');
			$(this).text('[ Veja mais ]');	
			clicou=0;
		}		
});


if($('body').hasClass('atendimento')){
	if(window.location.href.indexOf('#')>0){
	var href = window.location.href.split('#');
	var id = href[1];
	$('#'+id+'').next().show();
	}	
}



});




