$(document).ready(function(){ 

$.getJSON("https://api.foursquare.com/v2/users/self?oauth_token=XFAIU1RNE1DZIZFTJAMWPFOJSIKNVDUM2RXAWVOXM5P01RSY&v=20111230&callback=?", function(data) { 
	
		$.each(data.response, function(i,item){ 
			$.each(this.checkins.items, function(i,item){
        		var createdAt = this.createdAt; 
				var name = this.venue.name;
				var address = this.venue.location.address;

			    	var myDate = new Date( createdAt *1000);
    				var cleaneddate = myDate.toUTCString();
					
				$('#firstblock #social .foursquare').append('<div class="foursquare-text">last seen at ' +name+ '</br><span class="created_at">'+address+'</span></div>'); 
		
			});		
		});
	});
});

