// JavaScript Document

function LoadGallery(pictureName,imageFile,titleCaption,captionText)
{
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = imageFile;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }
  document.getElementById(titleCaption).innerHTML=captionText;
}
</script>
<script language="JavaScript">
var selected = '';
var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		photo01 = newImage("images/gallery/photo01.jpg");
		photo02 = newImage("images/gallery/photo02.jpg");
		photo03 = newImage("images/gallery/photo03.jpg");
		photo04 = newImage("images/gallery/photo04.jpg");
		photo05 = newImage("images/gallery/photo05.jpg");
		photo06 = newImage("images/gallery/photo06.jpg");
		photo07 = newImage("images/gallery/photo07.jpg");
		photo08 = newImage("images/gallery/photo08.jpg");
		preloadFlag = true;
	}
}
