    var pictures = new Array("Leah1.jpg", "Leah2.jpg", "Leah3.jpg", "Leah4.jpg", "Leah5.jpg", "Leah6.jpg", "Leah7.jpg", "Leah8.jpg", "Leah9.jpg", "Leah10.jpg", "Leah11.jpg", "Leah12.jpg", "Leah13.jpg", "Leah14.jpg", "Leah15.jpg", "Leah16.jpg", "Leah17.jpg");
	var alternate1 = 0;
	function clickIcon(val)
    {
		if(val == 1)
		{
        	alternate1 = (alternate1 > 15)?0:alternate1+1;
        	document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
		if(val == 0)
		{
			alternate1 = (alternate1 < 1)?16:alternate1-1;
			document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
    }
	
	function MM_openBrWindow(theURL,winName,features) 
	{ //v2.0
  		window.open(theURL,winName,features);
	}
