jQuery(function() {
    //hide all the panels except the default to avoid the images cycling as they load.
    $j('.product_panel .panel').hide();
    $j('.product_panel .default').show();

    $j('.product_panel .panel_nav a').hover(function() {
        //mouseover
        $j('.product_panel .panel').hide();
        $j($j('.product_panel .panel[rel*=' + $j(this).children("span").attr("id") + ']').eq(0)).show();
    }, function() {
        //mouseout - removed by request
    });
});
