$(document).ready(function(){$(".add_to_cart").click(function(){var d=$(this).offset();var b=$(this).parent().parent().find("[name=quantity]").val();var a=$(this);if(b==undefined){b=$("#quantity").val();if(b==undefined){b=1}}var c=$(this).parent().parent().find("[name=itemId]").val();if(c==undefined){c=$("#itemId").val();if(c==undefined){alert("There has been an error adding your item to the cart. Please contact customer services.")}}$.ajax({type:"POST",url:host+"checkout/cart/addItem/",data:"itemId="+c+"&quantity="+b,dataType:"json",success:function(e){$("#num_cart_items").html(e.numOfItems);$("#cart_total").html("&pound;"+e.cartTotal);var g=a.position();var f=a.parent().parent().parent().find(".added_to_cart");f.fadeIn("medium").delay(5000);f.fadeOut("medium")}})})});
