	
	var zrGallery = {
	rowMax: 3, //amount of images per row
	maxImages: 9, //total images to load
	galleryCode: '10150421918120961', //code of fb gallery to load can be retrieved from https://graph.facebook.com/quadrocopter/albums
	containerId: 'photogallerycontainer', //Where to load the photos
	init: function(){
		zrGallery.loadGallery(zrGallery.galleryCode);
	},
	loadGallery: function(code){
		var galleryURL = 'https://graph.facebook.com/' + code + '/photos?callback=?'
		var counter = 1;
		var styleLast = '';
		$.getJSON(galleryURL,function(json) {
			var objPath = json.data;
			$('#' + zrGallery.containerId).empty();
			var newThumb = new Image();
			$.each(objPath,function(i,obj){
				if(i < zrGallery.maxImages) {
					var imgThumb = obj.images[1].source;
					var imgZoom = obj.images[0].source;
					if(counter < zrGallery.rowMax){
						counter++;
						styleLast = '';
					} 
					else {
						counter = 1;
						styleLast = ' even';
					}
					$('#' + zrGallery.containerId).append('<a href="' + imgZoom  + '" class="photogallery' + styleLast + '" id="photogallery img' + i + '" rel="fbgallery" title="Buffalo Cafe Image from FaceBook"><img src="/images/clear.gif" style="background:url('+ imgThumb +') no-repeat 50% 50%" /></a>');
          $('.photogallery').fancybox({
						'overlayShow'	: false,
						'transitionIn'	: 'elastic',
						'transitionOut'	: 'elastic'
					});
					/*
					if((i + 1) == zrGallery.maxImages){
						attachZoom();
					}
					*/
				}
			});
		});
	}
}

