var J = jQuery.noConflict();
J(document).ready(function() {
    J("ul#main-nav li").hover(function() {
        J(this).find("span").show();
    }, function() {
        J(this).css({ 'background': 'none' });
        J(this).find("span").hide();
    });

    J(".product-thumb").mouseover(function() {
        var currentId = J(this).attr("id");
        //var currentsrc = J(this).attr('src');         
        try {
            var swappreview = document.getElementsByName(currentId);
            J(swappreview).mouseover();
        } catch (Error) { }
    });
    J(".product-thumb").mouseout(function() {
        return false;
    });

});