$(function () {
    document.documentElement.className += " js";
    var a = null;
    $(".main-nav li").has("div.drop").hover(function () {
        var b = $(this);
        a = setTimeout(function () {
            b.children("div.drop").stop(true, true).fadeIn(500);
        }, 100);
    }, function () {
        clearTimeout(a);
        $(this).children("div.drop").stop(true, true).fadeOut(200);
    });
    $("#search").focus(function () {
        if ($("#search").val() == "Search...") {
            $("#search").val("");
        }
    });
    $("#search").blur(function () {
        if ($("#search").val() == "") {
            $("#search").val("Search...");
        }
    });
    $(".sorting li").hover(function () {
        $(".dropdown", this).show();
    }, function () {
        $(".dropdown", this).hide();
    })
});
