function get_flicker_photos(page_id){
	//alert(document.URL);
	if(document.URL=='http://www.runa.org/sharing.aspx'){
		$.ajax({
			type: "GET",
			data: "page="+page_id , 
			url: 'http://www.runa.org/flickr/index.php',
			success: function(data){
				 if ($('#flickr_photos')){
					 $('#flickr_photos').remove();
					 $('.LandingPageLeftCol').append(data);
				 } else {
				 	$('.LandingPageLeftCol').append(data);
				 }
				 $("a[rel=example_group]").fancybox({
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'titlePosition' 	: 'over',
					'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
						return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
						}
				});
		}
		});
	}
}

