// Splash Photos and Clip lines
var splashphoto = new Array("./photos/andrea01b.jpg",
                            "./photos/andrea02.jpg",
                            "./photos/andrea03.jpg",
                            "./photos/andrea06.jpg",
                            "./photos/couture01.jpg",
                            "./photos/couture02.jpg",
                            "./photos/couture03.jpg",
                            "./photos/sharon02b.jpg",
                            "./photos/sharon05.jpg",
                            "./photos/acouture01.jpg")
var splashtext = new Array("./photos/thorncredit.gif",
                           "./photos/thorncredit.gif",
                           "./photos/thorncredit.gif",
                           "./photos/thorncredit.gif",
                           "./photos/couturecredit.gif",
                           "./photos/couturecredit.gif",
                           "./photos/couturecredit.gif",
                           "./photos/woodcredit.gif",
                           "./photos/woodcredit.gif",
                           "./photos/acouturecredit.gif")

function splashPic()
	{
		if (document.images)
			{
				randomNum = Math.floor((Math.random() * 10)) % 10;
				document.feature_photo.src = splashphoto[randomNum];
				document.feature_text.src = splashtext[randomNum];
			}
   }
