﻿$(function() {
    $('#navWrap ul').superfish();    // Enable Superfish Menus with HoverIntent delay
    $('#brandProductSubCats').superfish();    // Enable Superfish Menus with HoverIntent delay
    $('h1 + h2').addClass("firstH2");
    altRow();

    // For search on keypress 'Enter'
    $("#query2").keypress(function(e)
    {
        if (e.which == 13) searchPico();
    });
});

function altRow(e)
{
    $("table.doStyle tbody").each(function()
    {
        $(this).find("tr").removeClass("altRow").filter(":visible:" + (!e ? "odd" : e)).addClass("altRow");
    });
}

function searchPico()
{
    searchStr = $("#query2").val();
    newForm = "<div class=\"Searching\"><form id=\"searchForm\" name=\"frmSearch\" action=\"/products/search.aspx\" method=\"post\"><input type=\"hidden\" name=\"index2\" value=\"205096\" /><input type=\"query2\" name=\"query2\" value=\"" + searchStr + "\" /></form><h1>Searching...</h1></div>";
    $("body").html(newForm).find("form").submit();
}
