// poll
$(function() {

  
  $("#poll-submit").click(function() {
    var id_vote = $("#id_vote").val();
    var vote_answer = new Array; 
    
    // Проверяем чтобы хотя бы один ответ был выбран
    if ($("input[@name='vote_answer[]']:checked").length == 0)
    {
	    // msg
	    $("#active-poll #msg").text('Выберите ответ').removeClass().addClass('green').fadeIn("slow");
	    setTimeout("$('#active-poll #msg').fadeOut();", 1000);
          
        return false;
    }
    
    document.forms.vote_form.submit();

    return false;
    
  });
 
});
