function addGallery(gallery,replace)
{
	if(replace)
		$("#b-gallery ul li:not(:first)").remove();
	var needed = Math.floor(($("#body").height() - $("#b-gallery").height() - 16) / 112) - 1; //144
	for(i in gallery)
	{
		if(i>needed) break;
		$("#b-gallery ul").append(gallery[i]);
	}
	//$("#b-gallery ul li a").click();
}
var goGallery = function() {
	var gallery = new Array();
	FB.api
	(
		'/242823127749/tagged',
		function(response)
		{
			var n = 0;
			for(i in response['data'])
			{
				if(response['data'][i]['type'] == 'photo')
				{
					var href = response['data'][i]['link'];
					var imag = response['data'][i]['picture'];
					gallery.push('<li><a href="'+href+'" target=\"_blank\"><img src="'+imag+'" border=\"0\" /></a></li>');
				}
			}
			gallery.sort(function(a,b){ return (Math.random() - 0.5) > 0?true:false; });
			addGallery(gallery);
		}
	);
};

