var introducer = {
	showphoto: function(quickname, description){
		var photosrc = new Image;
		photosrc.onload = $('photoFrame').update('loading..');
		photosrc.src = "photos_organisation/small_" + quickname + ".jpg";
		//new Effect.Appear('photoWindow');
		$('photoFrame').update(photosrc);
		$('photoDesc').update(description);
		$('photoWindow').show();
	},
	closephoto: function(){
		//new Effect.Fade('photoWindow');
		$('photoFrame').update();
		$('photoDesc').update();
		$('photoWindow').hide();
	}
}