/* club general */

$(document).ready(function(){
	$("#carrito_de_compras h2").click(function(){
	    $("#carrito_de_compras > div").animate({height: 'toggle', opacity: 'toggle'}, 300);
	});
});

