jQuery(document).ready(function(){
	jQuery(".poll-bar div").each(function(){
		var bar = jQuery(this);
		var percent = bar.parents("ul").eq(0).find(".poll-number strong").text();
		bar.css("width", percent);
	});
});