function loadAlbumActivity(PhotoAlbum_ID, AlbumActivity_ID) {
	new Ajax.Request('/recreation/Images/photoAlbums/' + AlbumActivity_ID + '/index.html',
	{
		method:'get',
		onSuccess: function(transport){
		  var response = transport.responseText || "no response text";
		  $('photo_0_' + AlbumActivity_ID).innerHTML = response;
		},
		onFailure: function(){ alert('Something went wrong...') }
	  });	
}