	// >>> mso 04/05/2003
	var currentSrc = "";
	
	function getImgSrc() {
		return currentSrc;
	}
	function openPic() {
		var s = getImgSrc();
		window.open(s);
	}
	// <<< mso addition 04/05/2003			
	
	function switchImage(imgName, imgSrc) 
	{
		if (document.images)
		{
    		if (imgSrc != "none")
    		{
      			document.images[imgName].src = imgSrc;
    		}
  		}
	}
	
	function SlideShow(slideList, image, speed, name)          
	{
  		this.slideList = slideList;
  		this.image = image;
  		this.speed = speed;
  		this.name = name;
  		this.current = 0;
  		this.timer = 0;
	}
	SlideShow.prototype.play = SlideShow_play;  
	function SlideShow_play()       
	{
  		with(this)
		{
			if(current++ == slideList.length-1) current = 0;
				switchImage(image, slideList[current]);
				currentSrc = slideList[current];
    		clearTimeout(timer);
    		timer = setTimeout(name+'.play()', speed);
  		}
	}
	var a_SlideList = ['/App_Themes/kg_theme/images/KG.jpg', '/App_Themes/kg_theme/images/brlogo.jpg', '/App_Themes/kg_theme/images/JPerazzelli.jpg'];
	var a_SlideShow = new SlideShow(a_SlideList, 'aSlide', 4000, "a_SlideShow");
	
	
///////////////////////////////////////  menu

