$(document).ready(function(){

	$(".result").each(function(){
		var title = $(this).attr("title");
		
		$(this).css({width: "0%"}).animate({
    	width: title,}, 1250 );		
	});
	
});
