   	/***********************************************************************************************
	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 imageGalleryObj = false;

	function showImage()
	{	
		if(activeImage){
			activeImage.style.filter = 'alpha(opacity=50)';	
			activeImage.style.opacity = 0.5;
		}
		this.style.filter = 'alpha(opacity=100)';
		this.style.opacity = 1;	
		activeImage = this;	

	}
	
	function initSlideShow(eid)
	{
		imageGalleryObj = document.getElementById(eid);
		var slideshowImages = imageGalleryObj.getElementsByTagName('IMG');
		for(var no=0;no<slideshowImages.length;no++){
			slideshowImages[no].onmouseover = showImage;
		}
		//slideshowImages[0].style.opacity = 1;
		//slideshowImages[0].filters.alpha.opacity = 100;

	}
