    var pictures = new Array("1shirley.jpg", "2shirley.jpg", "3shirley.jpg", "4shirley.jpg", "5shirley.jpg", "6shirley.jpg", "7shirley.jpg", "8shirley.jpg", "9shirley.jpg", "10shirley.jpg");
	var alternate1 = 0;
	function clickIcon(val)
    {
		if(val == 1)
		{
        	alternate1 = (alternate1 > 8)?0:alternate1+1;
        	document.images.myImages.src = pictures[alternate1];
			document.pix.src = pictures[alternate1];
		}
		if(val == 0)
		{
			alternate1 = (alternate1 < 1)?9: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);
	}
