$(document).ready(function() {
	$('ul.graph li.first,ul.graph li.second').each(function() {
		var width = $(this).children('div.percent').text();
		$(this).animate({'width': width},'slow');
	});
});
