
	//array of images for the slide show
	var images = new Array ('images/1.jpg', 'images/2.jpg', 'images/3.jpg', 'images/4.jpg', 'images/5.jpg', 'images/6.jpg', 'images/7.jpg', 'images/8.jpg', 'images/9.jpg', 'images/10.jpg', 'images/11.jpg', 'images/12.jpg', 'images/13.jpg', 'images/14.jpg', 'images/15.jpg');
	
		var images_name = new Array ('One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten', 'Eleven', 'Twelve', 'Thirteen', 'Fourteen', 'Fifteen');
		
		var currentPic = 0;
		var currentPicName =0;
	
		//slide show can go forward or backward one image
		function go(number) {
			currentPic = currentPic + number;
			if(currentPic >= images.length) currentPic = 0;
			if(currentPic < 0) currentPic = images.length-1;
			document.display.src = images[currentPic];
		
	}
	
	
		
		var index = 0;

		//plays the slide show
		//slides will change automatically every 3 seconds
		function playShow(){
		if(index >=images.length) index=0;
		document.display.src = images[index];
		index++;
		timerID = setTimeout("playShow()", 3000);
		}
	
		//pauses the slide show
		function pauseShow(){
			if(timerID){
				clearTimeout(timerID);
				timerID = 0;
			}
	}
	
	

	function showPic (whichpic) {
 		if (document.getElementById) {
  		document.getElementById('placeholder').src = whichpic.href;
  	
 		 return false;
 		} else {
  		return true;
 		}
	}



	function changeURL(oAnchor,sUrl){
		oAnchor.firstChild.src = sUrl;
	}
			

	
	
window.onload = showObj;
 function showObj()
    {
   
        var divDisplay = document.getElementById("two");
  		
    }
			
		function firstDiv(which)
    	{
		var divDisplay = document.getElementById(which);
          divDisplay.style.display="block";
    	}
		
		function secondDiv(which)
    {
		var divDisplay = document.getElementById(which);
          divDisplay.style.display="none";
    }
		
