﻿$(document).ready(function () {
    // Вставляем и убираем "значение по умалчению" в поле поиска
    $('input[id$=TextSearch]').attr('value', 'Поиск по сайту');
    $('input[id$=TextSearch]').bind({
        focus: function () {
            if ($(this).attr('value') == 'Поиск по сайту') {
                $(this).attr('value', '');
            }
        },
        blur: function () {
            if ($(this).attr('value') == '') {
                $(this).attr('value', 'Поиск по сайту');
            }
        }
    });

    $('.MainMenu li').click(function () {
        window.location = $(this).find('a').attr('href');
    });

    $('.ProdMenu div.ListItem').hover(function () {
        $(this).find('div.BulletedList:first').stop(true, true);
        $(this).find('div.BulletedList:first').slideDown();
    },
    function () { $(this).find('div.BulletedList:first').slideUp('fast'); });
});
