	$(document).ready(function(){

	    $.getJSON("http://csrwiretalkback.tumblr.com/api/read/json?callback=?",
	      function(data) {     

	          $.each(data.posts, function(i,posts){
	            var id = this.id;
	            var type = this.type;
	            var date = this.date;
	            var url = this.url;
	            var title = this["regular-title"];
				
				if (i < 5 && title != ''){

	            $('#updatelist').append('<li><a href="'+url+'" id="'+id+'" title="'+title+'">'+title+'</a></li>');
	
				}
			else {}
	          });

	      });

	})

