<!-- Hide script from old browsers

// this works in explorer - not in Netscape... changes colors in the menu table as mouse rolls over selection
	function onColor(blah)
	{
		blah.style.backgroundColor='#999999';
	}

	function offColor(blah)
	{
		blah.style.backgroundColor='#666666';
	}

	function returnMain()
	{
		window.blur();
	}

      function processing(testForm) {
		if (testForm.realname.value == "") {
			alert("Please enter your name in the 'Your Name' field.");
			testForm.realname.focus();
			return false;
			}

		var lcMail = testForm.email.value;
		if (lcMail == "") {
			alert("Please enter your e-mail address in the 'E-mail' field.");
			testForm.email.focus();
			return false;
			}
		else {
			var lnAt = lcMail.split("@");
			if (lnAt.length < 2) {
				alert("Please enter a valid address for the 'E-mail' field.");
				testForm.email.focus();
				return false;
				}
			var lnAt1 = lnAt[1].split(".");
			if (lnAt1.length < 2) {
				alert("Please enter a valid address for the 'E-mail' field.");
				testForm.email.focus();
				return false;
				}
			}
         		testForm.submitButton.value = 'Thank you.  Sending information...';
         	}
	
// Banner code for cycling images...
	bannerImages = new Array("Images/009b.jpg","Images/studio1.jpg")

	bannerImagesText = new Array("Don't Look Back","Artist in her Studio")
	currentImageNumber = 0
	numberOfImages = bannerImages.length

//Rotation routine for images
	function rotateImages() {
		if (document.images) {
			currentImageNumber = currentImageNumber + 1
			if (currentImageNumber == numberOfImages) {
				currentImageNumber = 0
			}
			document.banner.src=bannerImages[currentImageNumber]
			window.status=bannerImagesText[currentImageNumber]
		  	setTimeout("rotateImages()", 5 * 1000)
	  		}
		}
	
// End hiding script from old browsers -->
