$(document).ready(function () { $('#mainnav li:not(.current) a').css({ backgroundPosition: "0 -442px" }).mouseover(function () { $(this).stop().animate({ backgroundPosition: "0 -405px" }, 250, "linear") }).mouseout(function () { $(this).stop().animate({ backgroundPosition: "0 -442px" }, 250, "linear", function () { $(this).css({ backgroundPosition: "0 -442px" }) }) }); $("#btnHeaderSearch").click(fn); $("#txtSearch").keypress(function (a) { var b = a.keyCode ? a.keyCode : a.which; if (b == "13") { fn(); a.preventDefault(); } }); if ($.browser.msie && (parseInt($.browser.version, 10) < 9)) { $("table.standard tbody tr:even td").addClass("alt"); } }); var fn = function () { if ($("#txtSearch").val().length > 0) { document.location.href = "/search.aspx?search=" + $("#txtSearch").val(); return false } }
