var FlickrLandscape = new function(){
	return {
		curFlickrFrame : 0,
		
		//------------------------------------------------------------------------------------
		
		handleFlickrJSONResponse : function(data){
			if(data.stat != "ok"){
				$("#flickrImages").html("<span class='flickrFail'>"+ data.message +"</span>");
				return;
			}
			else {
				$("#flickrImages").html("");
				$.each(data.photoset.photo, function(i,item){
					var photoURL = "http://farm" + item.farm + ".static.flickr.com/" + item.server + "/" + item.id + "_" + item.secret + "_s.jpg"
					var photoPage = "http://www.flickr.com/photos/houser/"+ item.id;
		
					$("#flickrImages").append("<a href='"+ photoPage +"' title='"+ item.title.replace("'","&#0039;") +"' target='_blank'><img src='"+ photoURL +"' /></a>")
				});
				matchHeight();
			}
		}
		
		//------------------------------------------------------------------------------------

	}
}();

var flickrAPIKey = "f3e5773b4e9574ca22efc156d56658ff";

$(function(){
	$.getJSON("http://api.flickr.com/services/rest/?method=flickr.photosets.getPhotos&api_key="+flickrAPIKey+"&photoset_id=72157623489657632&per_page=52&format=json&jsoncallback=?", FlickrLandscape.handleFlickrJSONResponse);
});