   	/***********************************************************************************************		Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com		UPDATE LOG:		March, 10th, 2006 : Added support for a message while large image is loading		Get this and other scripts at www.dhtmlgoodies.com		You can use this script freely as long as this copyright message is kept intact.		***********************************************************************************************/    		var displayWaitMessage=true;	// Display a please wait message while images are loading?  	   			var activeImage = false;	var imageGalleryLeftPos = false;	var imageGalleryWidth = false;	var imageGalleryObj = false;	var maxGalleryXPos = false;	var slideSpeed = 0;	var imageGalleryCaptions = new Array();	function startSlide(e)	{		if(document.all)e = event;		var id = this.id;		this.getElementsByTagName('IMG')[0].src = 'Images/' + this.id + '.gif';			if(this.id=='arrow_right_nav' || this.id=='arrow_right_ave' || this.id=='arrow_right_bp' || this.id=='arrow_right_cx' || this.id=='arrow_right_gp' || this.id=='arrow_right_hc' || this.id=='arrow_right_man' || this.id=='arrow_right_ox' || this.id=='arrow_right_opt' || this.id=='arrow_right_oc' || this.id=='arrow_right_ng' || this.id=='arrow_right_pier' || this.id=='arrow_right_eh'){			slideSpeedMultiply = Math.floor((e.clientX - this.offsetLeft) / 5);			slideSpeed = -1*slideSpeedMultiply;			slideSpeed = Math.max(-10,slideSpeed);		}else{						slideSpeedMultiply = 10 - Math.floor((e.clientX - this.offsetLeft) / 5);			slideSpeed = 1*slideSpeedMultiply;			slideSpeed = Math.min(10,slideSpeed);			if(slideSpeed<0)slideSpeed=10;		}	}		function releaseSlide()	{		var id = this.id;		this.getElementsByTagName('IMG')[0].src = 'Images/' + this.id + '.gif';		slideSpeed=0;	}			function gallerySlide()	{		if(slideSpeed!=0){			var leftPos = imageGalleryObj.offsetLeft;			leftPos = leftPos/1 + slideSpeed;			if(leftPos>maxGalleryXPos){				leftPos = maxGalleryXPos;				slideSpeed = 0;							}			if(leftPos<minGalleryXPos){				leftPos = minGalleryXPos;				slideSpeed=0;			}						imageGalleryObj.style.left = leftPos + 'px';		}		setTimeout('gallerySlide()',20);			}		function showImage()	{		if(activeImage){			activeImage.style.filter = 'alpha(opacity=100)';				activeImage.style.opacity = 1;		}			this.style.filter = 'alpha(opacity=100)';		this.style.opacity = 1;			activeImage = this;		}		function initSlideShow()	{		var ids = new Array("arrow_left_nav", "arrow_right_nav", "arrow_left_ave", "arrow_right_ave", "arrow_left_bp", "arrow_right_bp", "arrow_left_cx", "arrow_right_cx", "arrow_left_gp", "arrow_right_gp", "arrow_left_hc", "arrow_right_hc", "arrow_left_man", "arrow_right_man", "arrow_left_ox", "arrow_right_ox", "arrow_left_opt", "arrow_right_opt", "arrow_left_oc", "arrow_right_oc", "arrow_left_ng", "arrow_right_ng", "arrow_left_pier", "arrow_right_pier", "arrow_left_eh", "arrow_right_eh");		for (var i = 0; i < ids.length; i++)		{			if (document.getElementById(ids[i]))			{								document.getElementById(ids[i]).onmousemove = startSlide;				document.getElementById(ids[i]).onmouseout = releaseSlide;			}		}								imageGalleryObj = document.getElementById('theImages');		imageGalleryLeftPos = imageGalleryObj.offsetLeft;		imageGalleryWidth = document.getElementById('galleryContainer').offsetWidth - 80;		maxGalleryXPos = imageGalleryObj.offsetLeft; 		minGalleryXPos = imageGalleryWidth - document.getElementById('slideEnd').offsetLeft;		var slideshowImages = imageGalleryObj.getElementsByTagName('IMG');		for(var no=0;no<slideshowImages.length;no++){			slideshowImages[no].onmouseover = showImage;		}				var divs = imageGalleryObj.getElementsByTagName('DIV');		for(var no=0;no<divs.length;no++){			if(divs[no].className=='imageCaption')imageGalleryCaptions[imageGalleryCaptions.length] = divs[no].innerHTML;		}		gallerySlide();	}			window.onload = initSlideShow;