$(document).ready(function(){


	

	$(".meter").each(function(n){
	
			var _thisRatingIs = $(this).attr("rel");
			
			switch(_thisRatingIs) {
				case '0' : _setWidth = '38px'; break;
				case '10' : _setWidth = '88px'; break;
				case '20' : _setWidth = '138px'; break;
				case '30' : _setWidth = '188px'; break;
				case '40' : _setWidth = '238px'; break;
				default : _setWidth = '38px'; break;
			}
			
			$(this).delay(n * 600).animate({"width":_setWidth},700,'easeOutBounce'); 
			
	
	
	});





});

