
// $(document).ready(function(){
// 	$(".flickr-img").attr("alt", "this is the comment");
// 	
// 	$("#fullscreen").click(function(){
// 		//var gallery = Galleria.get(0);
// 		//console.log(gallery)
// 		//gallery.enterFullscreen();
// 		
// 		$.get('http://www.flickr.com/services/rest/?method=flickr.test.echo&format=json&api_key=0ce586102af4e7af901642ad1d24e9e0?callback=?', function(json)
// 		{
// 			console.log(json.method)
// 		})
// 	})	
// })
// 
// $(document).ready(function() {
//   $.getJSON('http://www.flickr.com/services/rest/?method=flickr.people.getPublicPhotos&format=json&user_id=62492387@N02&api_key=be6e6f0a342eccbc9ac4993b6dabc8ed&callback=?', function(json) { //get information about the user usejquery from twitter api
//     $('#fullscreen').text(json.method._content); //get the follower_count from the json object and put it in a span
// 	console.log(json)
//   });
// });
// 
// function jsonFlickrApi(rsp){
// 
// 	if (rsp.stat != "ok"){
// 
// 		// something broke!
// 		return;
// 	}
// 	for (var i=0; i<rsp.photos.photo.length; i++){
// 
// 			var blog = rsp.photos.photo[i];
// 
// 			var div = document.createElement('div');
// 			var txt = document.createTextNode(blog.id);
// 
// 			div.appendChild(txt);
// 			document.body.appendChild(div);
// 		}
// 
// 	console.log(rsp)
// }
