$(document).ready(function(){
	//Al submitear el formulario...
	$('.comprar').click(function(){
		$(this).fadeOut(500, mostrarOK);
		$(this).fadeIn(2000);
		$(this).fadeOut(2000, mostrarComprar);
		$(this).fadeIn(500);
		
		function mostrarOK()
		{
			$(this).addClass('ok');
		}
		
		function mostrarComprar()
		{
			$(this).removeClass('ok');
		}
		
		var id = $(this).parent().children('.id').val();
		
		//Recargo el importe total del carrito en la cabecera
		$('#total').load('/includes/comunes/totalAjax.php?ajax=true&accion=anadirProducto&id=' + id);
		
		return false;
	});
});