jQuery(document).ready(function($) {
	$(".product-img-box .more-views ul a img").click(function() {
	  var sourceImage = $(this).attr("src");
	  var sourceProductImage = $(".product-img-box .product-image img").attr("src");
	  
	  $(".product-img-box .product-image img").fadeOut(function(){
	  	$(".product-img-box .product-image img").attr("src",""+sourceImage+"");
	  	$(".product-img-box .product-image img").fadeIn();
	  });
	  /*$(this).fadeOut(function(){
	  	$(this).attr("src",""+sourceProductImage+"");
	  	$(this).fadeIn();
	  });*/
	  
	});

// Efeito do mais informações
	$("#descricaoProdutoCarrinho .box-collateral h2").toggle(function(){
		 $(this).next().toggle("slow");
		 $(this).addClass("maisInfoSelect");
	}, function (){
		 $(this).next().toggle("slow");
		 $(this).removeClass("maisInfoSelect");

	}).next().hide();
	
	
// Efeito dos títulos dos filtros da sidebar
	$(".sidebar .block-content #narrow-by-list dt").toggle(function(){
		 $(this).next().toggle("slow");
		 $(this).addClass("maisInfoSelect");
	}, function (){
		 $(this).next().toggle("slow");
		 $(this).removeClass("maisInfoSelect");

	}).next().hide();
	
	
// Limpa campo de busca do site
	$("#header-search #search").focus(function(){
		if ($(this).val() == "Buscar"){
			$("#header-search #search").val("");
		}
	});
	$("#header-search #search").blur(function(){
		if ($(this).val() == ""){
			$("#header-search #search").val("Buscar");
		}
	});
	
	

});
