function initGallery()
{
	$(".mainpiccontainer/img").each(function(i){
			centreGalleryImg($(this));
		});
	
	$(".galleryblock/.thumbs/img").click(function(event)
	{
		var strID = event.target.id;
		
		
		
		//get the gallery block
		var strGalleryID = $(event.target).parents("div.galleryblock").attr('id');
		$("#"+strGalleryID+"/.mainpiccontainer/img[@id!='large"+strID+"']").hide();
	
		$('#large'+strID).fadeIn("slow");
		//$("#"+strGalleryID+"/.mainpiccontainer").height($('#large'+strID).height());

		$('#large'+strID).load(
			function()
			{
				centreGalleryImg($('#large'+strID));
			}
		);
		
		
	});
}

function centreGalleryImg(oImage)
{
	
		if (oImage.width() > 0 && oImage.height() > 0)
		{
			var intLeftMargin = Math.floor((509 - oImage.width())/2);
			if (intLeftMargin <= 1) intLeftMargin = 0;
	
			var intTopMargin = Math.floor((341 - oImage.height())/2);
			if (intTopMargin <= 1) intTopMargin = 0;
			
			oImage.css("margin-left",intLeftMargin);
			oImage.css("margin-top",intTopMargin);
		}	
}
