$(function() {

    $("input.includeDelivery:checkbox").change(function() {
        simpleCart.deliver = $('input.includeDelivery:checkbox:checked').val() != null;
        simpleCart.update();
    });

    $("ul.ickleLinks li.holder").hover(
        function() {
            $("span", this).addClass("hover");
            $("ul", this).css({ "left": $(this).position().left }).show();
        }, function() {
            $("span", this).removeClass("hover");
            $("ul", this).hide();
        });

});
