﻿$(document).ready(function () {
    $("select.autopost").change(function () {
        $(this).parents("form").submit();
    });
    $("form[action*=Voted]").submit(function () {
        var answ = $(this).serialize();
        if (answ.indexOf("answer") == -1)
            return false;
    });
    $("input#search").focus(function () {
        var $this = $(this);
        if ($this.val() == '' || $this.val() == 'поиск по сайту')
            $this.val('');
    }).blur(function () {
        var $this = $(this);
        if ($this.val() == '')
            $this.val('поиск по сайту');
    });
    $("ul.sf-menu").supersubs({ minWidth: 10, maxWidth: 20, extraWidth: 1 }).superfish({ animation: { height: "show" }, delay: 1000 });
});
