﻿
var activeImage = false;

function showImage()
	{
		if(activeImage){
			activeImage.style.filter = 'alpha(opacity=80)';	
			activeImage.style.opacity = 0.8;
		}	
		this.style.filter = 'alpha(opacity=100)';
		this.style.opacity = 1;	
		activeImage = this;	
	}

function initSlideShow()
	{
		imageGalleryObj = document.getElementById('theImages');
		var slideshowImages = imageGalleryObj.getElementsByTagName('IMG');
		for(var no=0;no<slideshowImages.length;no++)
		{
		    slideshowImages[no].style.filter = 'alpha(opacity=80)';	
			slideshowImages[no].style.opacity = 0.8;
			slideshowImages[no].onmouseover = showImage;
			
		}		
	}
	
 function mypopup(str)
 {
	 window.open ("photoalbum.asp?id="+str,"Album","width=600,height=450");
 }
	
window.onload = initSlideShow;

