// 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() {
      }
    );

    $("#txtInput").keydown(function(e) {
      var code = (e.keyCode ? e.keyCode : e.which);
      if(code == 13) {
        window.location = "/search.aspx?search=" + $("#txtInput").val();
        e.cancelBubble = true;
        return false;
      }
    });

    $("#btnSearch").click(function() {
      window.location = "/search.aspx?search=" + $("#txtInput").val();
    });


});
