$(function(){
    $('button[url]').click(function(){
	    document.location.href = $(this).attr('url');
    });

    $('button, input:submit').button();

    $('input[name=query]').focus(function(){
            if ($(this).val() == 'Поиск'){
                    $(this).val('');
            }
    });

    $('input[name=query]').blur(function(){
            if ($(this).val() == ''){
                    $(this).val('Поиск');
            }
    });

    $('#poll-form #submit').click(function(){
        if ($('#poll-form').find('input:checked').length > 0) {
            return true;
        } else {
            alert('Надо выбрать хоть что-то!');
            return false;
        }
    });
});
