﻿$(document).ready(function() {

    $('#hide-prompt').click(function(e) {
        $('#basket-popup').hide();
        e.preventDefault();
    });

    $("a.new-window").click(function(event) {
        event.preventDefault();
        window.open($(this).attr('href'));
    });

    $("a#basket").live("click", function() {

        $('#basket-popup').hide();

        $("a#basket").toggleClass("basket-open");

        var liCount = $('#basket-items ol').children("li").length;
        if (liCount == 1) {
            window.location = '/basket.aspx';
        }
        else {
            $("#basket-items").slideToggle("fast");
        }

        return false;
    });
});
