
$(document).ready( function() {
    $('#nav > li').hover( 
        function () { $(this).addClass('sfhover'); },  
        function () { $(this).removeClass('sfhover'); }
                      );

    /* ACTIVATE LIGHTBOX */
    $('#thumbContnr a.picPop, a.lightbox').lightbox();

    /* activate cart deleting x's */
    $('td.cart_del a').bind('click', function() {
        if (confirm("Remove this item from your purchase?")) {
            document.location.replace(this.href + '?op_del=' + this.rel);
        }
        $(this).blur();
        return false;
    });


    /* init any videos..? */
    $('a.embedmedia').media({ width: 400, height: 300, autoplay: true, type: 'flv' });
});

