/*
 * polls.js
 *
 * Copyright (c) 2007 UiD Team
 * All Rights Reserved
 *
 */
function animate_bar(index){$('div#'+poll_animation_data[index].bar_id+' div.m').animate({width:poll_animation_data[index].bar_width},1000,function(){if(index<poll_animation_data.length-1){animate_bar(index+1);}});}$(function(){if(typeof poll_animation_data=='undefined'){return false;}else{animate_bar(0);}});