<!-- Hide script from old browsers


// JavaScript Document
	
	photoArray = new Array("images/eye2.png", "images/eye1.png", "images/eye3.png", "images/eye4.png","images/eye5.png","images/eye6.png","images/eye7.png","images/eye8.png","images/eye9.png","images/eye10.png","images/eye11.png","images/eye12.png","images/eye13.png","images/eye14.png","images/eye15.png","images/eye16.png","images/eye17.png","images/eye18.png","images/eye19.png","images/eye20.png");

	var pictureOn = 20;
	var picCount = photoArray.length -1;
	
winresize();


function winresize()
{
window.resizeTo(647,591)
}




function photoview()
{

	document.photoviewer.src=photoArray[pictureOn];

		if (document.images) 
			{
			pictureOn--;

			if (pictureOn == -1) 
				{
					pictureOn=19;
				}
			}
		document.photoviewer.src=photoArray[pictureOn];
		setTimeout("photoview()", 2000);

}

//End hiding script from old browsers -->

