﻿var show_menu = false;
jQuery(document).ready(function () {
    jQuery(".menuBooksContainer").hover(function () {
        jQuery(".linkBooksHoverMenu").position({
            my: "left top",
            at: "left bottom",
            of: jQuery(this).find(".linkBooks")
        });
        jQuery(".linkBooksHoverMenu").show();
        jQuery(".linkBooksHoverMenu").position({
            my: "left top",
            at: "left bottom",
            of: jQuery(this).find(".linkBooks")
        });
    },
            function () {
                jQuery(".linkBooksHoverMenu").hide();
            });
    jQuery(".linkBooksHoverMenu").hover(function () { show_menu = true; }, function () {
        show_menu = false;
        jQuery(".linkBooksHoverMenu").hide();

    });
    if (jQuery(".ContainerSearch input").val().length == 0) {
        jQuery(".ContainerSearch input").val(" Hledat ");
        jQuery(".ContainerSearch input").addClass("default");
    }

    jQuery(".ContainerSearch input").focus(function () {
        jQuery(this).removeClass("default");
        if (jQuery(this).val() == " Hledat ") {
            jQuery(this).val("");
        }
    });
    jQuery(".ContainerSearch input").blur(function () {
        if (jQuery(this).val().length == 0) {
            jQuery(this).addClass("default");
            jQuery(".ContainerSearch input").val(" Hledat ");
        }
    });
});
