jQuery(function($) {
	$("a.fancy").fancybox();
	//Rimuove prodotto dal carrello
	$(".remove_product").click(function(){
		document.location.href = 'shop.php?action=remove&cart&id_remove=' + $(this).attr('id');								   
	});
	$('#products a').hover(
		function(){ $(this).addClass('active'); },
		function(){ $(this).removeClass('active'); }
	);
});

