$(document).ready(function () {
    $('#shoppingBagButton').CreateBubblePopup({
        selectable: true,
        position: 'bottom',
        align: 'center',
        innerHtmlStyle: {
            color: '#000',
            'text-align': 'center'
        },
        tail: {hidden:false},
        themeName: 'black',
        themePath: 'http://angenoir.co.uk/Themes/AngeNoir/Content/jquerybubblepopup-theme'

    });

    $("#shoppingBagButton").mouseover(function (event) {
        $("#" + event.currentTarget.id).SetBubblePopupInnerHtml($("#shoppingBagContents").html());
    });

    $('.itemsTable tr:even').addClass('alt-row-class');
});
 
