// JavaScript Document
 $(function() {
 var url = "http://twitter.com/status/user_timeline/RFDVA.json?count=1&callback=?"; 
       $.getJSON(url, 
        function(data){ 
		   $.each(data, function(i, item) { 
				var strMonth = item.created_at.substring(4, 10);
				var strTime = item.created_at.substring(11, 20);
				var strMin = strTime.substring(3,9);
				var actualTime = strTime.substring(0,2)-5;
                $("img#profile").attr("src", item.user["profile_image_url"]);             
				$("#tweets").append(item.text);
				$(".tweetdate").append(strMonth + " @ " + actualTime + ":"+ strMin);
				$("#tweets ul").append(i);
            }); 
        }); 
			});
