



function vidClick(pxName) {

    varLink = $('#video-item-' + pxName);

    $('#videoItem .scTitle').hide().html($(varLink).html()).fadeIn();

    if (pxName!='') { 

        $('#videoItem .scTitle').attr('href', 'products/featured-products/' + pxName + '.htm');

        $('#videoItem .scWishlist').attr('href', 'products/featured-products/' + pxName + '.htm?doAction=wishlist');
        $('#videoItem .scAddToCart').attr('href', 'products/featured-products/' + pxName + '.htm?doAction=addToCart');


        $('#videoItem .scLinks a').hide();        

        $('#videoItem .scLinks a').fadeIn(1000);        


    }

    $('#videoItems a').removeClass('scUp');    
    $(varLink).addClass('scUp');   

    var selectedIndex = $(varLink).index();

    leftMargin = (selectedIndex * -102) + 204;
    
    totalLen = $('#videoItems a').length * 102;
    minLeft = 510 - totalLen;

    if (leftMargin>0) { leftMargin = 0; };
    if (leftMargin < minLeft) leftMargin = minLeft; 


    $('#videoItems').animate({
            left: leftMargin
        }, 400, function() {
            // Animation complete.
    });                                           


}


$(document).ready(function(){

});



//JSEX

