function send_voting() {
$('#PollForm input').css("border-color", "#d2d2d2");
$('#Response').html('<img src="gfx/loading2.gif" alt="Loading..." style="margin-left:15px;margin-right:7px;float:left;" /> <span style="font-size:12px;">Trwa ładowanie...</span>').fadeIn();      
$('#PollInside').slideToggle();

setTimeout(function() {

    dane = $('#PollForm').serialize();
        $.ajax({
	type: "POST",
	url: "library/ajax_vote.php",
	data: dane,
	success: function (html) {


$('#Response').html(html);
$('#PollInside').slideToggle();
	  }
	});
	
}, 750);	
	
}



$("form").each(function(){
var $that = $(this);
$that.submit(function(){
$that.find("input[type='image'],input[type='submit'],input[type='button']").attr("disabled", "true");
});
});


$(document).ready(function() { 

$(".bar div").each(function(){
w = $(this).html();

$(this).animate({
    width: ''+w+''
  }, 1000, function() {
  });


});

$('#showResults').click(function() {
$('#Response').html('<img src="gfx/loading2.gif" alt="Loading..." style="margin-left:15px;margin-right:7px;float:left;" /> <span style="font-size:12px;">Trwa ładowanie...</span>').fadeIn();      
$('#PollInside').slideToggle();
setTimeout(function() {
$('#Response').html('');
$('#PollForm').load('library/load_results_poll.php');
$('#PollInside').slideToggle();
}, 750);	
});
  
});