// Photo Gallery Load script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004-2008 http://www.cryer.co.uk/.
// Script is free to use provided this copyright header is included.
function LoadPicture(pictureName, imageFile)
{
	var picture=document.getElementById(pictureName);
	picture.src = imageFile;
}
