$(document).ready(function(){
    if($("#fotolist")[0]){
		$.jGFeed('http://relacje.stalgast.com/feed/',
	        function(feeds){
	          // Check for errors
	          if(!feeds){
	            // there was an error
	            return false;
	          }
	          // do whatever you want with feeds here
	         	$("#fotolist").empty();
			 for(var i=0; i < 5; i++){
	            var entry = feeds.entries[i];
	            // Entry title
				$("#fotolist").append("<div class='fotostory'><a class='title' href='" + entry.link +"'>" + entry.title + "</a></li>");
	            }
	        }, 10);
	}
});