

$(document).ready(function() {
  addToCart();
  calculateCart();
}); 

function addToCart() {
  $("a.addToCart").click(function() {
    var l_URL = $(this).attr("href");
    $(this).parent().fadeOut("slow",function(){
      $(this).load(l_URL,{js: true},function(){
        $(this).css("color","#000");
        $(this).fadeIn("slow");
  calculateCart();
      });
    });
    return false;
  });
}

function calculateCart() {
  var l_URL = "getbasketinfo.obyx";
  $("p.basketsum").fadeOut("slow");

  $("span#basketItems").load(l_URL,{qty: true},function(){
    $("span#basketCost").load(l_URL,{cost: true},function(){
	if(parseInt($("span#basketItems").text()) > 0){$("p.basketsum").addClass("bold");}else{$("p.basketsum").removeClass("bold");}
      $("p.basketsum").fadeIn("slow");
    });
  });
  return false;
}


