$(document).ready(function(){
	$(".accordion h6").click(function(){
		$(this).siblings("h6").removeClass("active");
		$(".blqProducto").slideUp("slow");
		$(this).toggleClass("active");
		$(this).next("div").next("div").slideToggle("slow");
	});
});
