// jQuery page load function
$(document).ready(function() {

    $("ul.nav").superfish({
        delay: 0,                            // one second delay on mouseout 
        animation: { height: 'show' },  // fade-in and slide-down animation 
        speed: 'fast',                          // faster animation speed 
        autoArrows: false,                           // disable generation of arrow mark-up 
        dropShadows: false                            // disable drop shadows 
    });

    $.preloadCssImages();

    $("input.searchterms").focus(function() {
        $(this).val("");
    });

    $("#rotatingImages").pwRotatingImages({
        interval: 8500,
        autoCalcHeight: false
    });

    $(".productThumb").hover(
      function() {
        $(".bigProductImage img").hide();
        var $bigImg = $(".bigProductImage img[alt='" + $(this).attr("alt") + "']")    ;
        $bigImg.show();
      },
      function() {
      }
    );

});