function getCart() {
    $.ajax({
        url: "http://www.beastsheds.co.uk/order.php/viewcart/cart/" + myTimestamp(),
        data: {},
        dataType: "json",
        success: function (data) {
            //alert(data.items);
            $("#cartitems").html(data.items + " Items<span>|</span>");
            $("#divPrice").html("Total: &pound;" + parseFloat(data.total).toFixed(2));
        }
    });
}
function myTimestamp(){ tstmp = new Date(); return tstmp.getTime();} 
