﻿$(document).ready(function() {
    // ensure the add to cart button show the hand.....
    $('.clickaction').hover(function() { $(this).addClass('button-hover'); }, function() { $(this).removeClass('button-hover'); });
});



function removeFromBasket(id) {

    if (confirm("Are you sure you wish to remove this item ?") == true) {
        CallPageMethod(pagePath, "RemoveItemFromBasket", ["id", id], RemovedFromBasketSucceeded, RemoveFromBasketFailed);
    }
}

function RemovedFromBasketSucceeded(results) {
    location.reload(true);
}


function RemoveFromBasketFailed(results) {
    alert(results.responsetext);
}



 




