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

    /* ACTIVATE LIGHTBOX */
    if ($.fn.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?")) {
            var url = document.location.href.replace(/[\?&]op_del=[^&\?$]+/g, ''); // remove any ?op_del=sxx112 from the url
            var sep = (url.match(/\?/))? '&' : '?'; 
            document.location.replace(url + sep + 'op_del=' + this.rel);
        }
        $(this).blur();
        return false;
    });


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

