$(document).ready(function() {
	
	$('.hideChili').click(function() {
  	$('.chiliFactory').slideUp('slow', function() {
    
 	 });
	});

	$.getFeed({
			url: '/proxy.php?url=http://feeds.foursquare.com/history/Y45KKXL3KLFCVMKVICKENY0SKGRTB2LD.rss',
			success: function(feed) {	                    
				var html = '<ul>';
						
				for(var i = 0; i < feed.items.length && i < 5; i++) {	        	
					
					var item = feed.items[i];	        	
					
					html += '<li class="timeago">'
					+ '<a class="fsPin" href="'
					+  item.link
					+ '"></a>'
					+ '<p>'
					+ item.title
					+ '</p>'
					+ '<span class="time">'
					+ jQuery.timeago(item.updated);
					+ '</span></li>';
				
					
				}
						
				html += '</ul>';
						
				$('#foursquare').append(html);
			}    
		});
});
