$(document).ready(function () {
    $(".list_closed").live("click", function () {

        $(this).attr("class", "list_opened");
        var tContent = $(this).parent("li").children(".list_content");
        tContent.css("display", "block");
        return false;

    }
    );
    $(".list_opened").live("click", function () {

        $(this).attr("class", "list_closed");
        var tContent = $(this).parent("li").children(".list_content");
        tContent.css("display", "none");
        return false;

    }
    );

    $(".input_search").bind("focus", function () {

        if ($(this).attr('value') == "Поиск...") $(this).attr('value', '');

    }
    );

    $(".input_search").bind("blur", function () {

        if ($(this).attr('value') == "") $(this).attr('value', 'Поиск...');

    }
    );

}
);
