function loadPoll(){var s=$('#sondaggio');var id=s.attr('class'); $.get('index.php','r=sondaggio/view&id='+id,function(data){s.hide();s.html(data);s.fadeIn(500);
s.find('#sres').click(function(){ $.get('index.php','r=sondaggio/result&id='+id,function(data){ $('#sondaggio').fadeOut(500,function(){ $(this).html(data);animateResults(this);});});return false;}).end().find('#sform').submit(function(){var sv=$(this).find('input[name=poll]:checked').val();if(sv!=''){ $.post($(this).attr('action'),$(this).serialize(),function(data){ $('#sondaggio').fadeOut(500,function(){ $(this).html(data);animateResults(this);});});}return false;});
});}
function animateResults(data){ $(data).find('.bar').hide().end().fadeIn(500,function(){ $(this).find('.bar').each(function(){var bw=$(this).css("width"); $(this).css('width','0').show().animate({width:bw},1000);});});}
function returnPoll(){var s=$('#sondaggio');s.fadeOut(500,function(){loadPoll();});}
$(function(){loadPoll();});
