function LoadGallery(pictureName,imageFile)
	{
		document.getElementById(pictureName).style.filter="blendTrans(duration=0.1)";
		document.getElementById(pictureName).filters.blendTrans.Apply();
		document.getElementById(pictureName).src = imageFile;
		document.getElementById(pictureName).filters.blendTrans.Play();
	}

function handleOverAR()
	{
	document.ImgAR.filters.blendTrans.Apply();
	document.ImgAR.src = ImgAROn.src;
	document.ImgAR.filters.blendTrans.Play();
	}


function handleOut()
	{
	document.ImgAR.filters.blendTrans.Apply();
	document.ImgAR.src = ImgAROff.src;
	document.ImgAR.filters.blendTrans.Play();
	}
