<!-- begin hide me ...
bName = navigator.appName;
var br = "0";
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) ||
        (bName == "Microsoft Internet Explorer" && 
        bVer >= 4)) br = "n3";
    else br = "n2";

    if (br == "n3") {
    	photoNum = 0;
    	photoSpeed = 5000;

    photoArray = new Array();
    photoArray[0] = new Image();
    photoArray[0].src = "photos/products/quotes/blue.jpg";
    photoArray[1] = new Image();
    photoArray[1].src = "photos/products/quotes/burgundy.jpg";
    photoArray[2] = new Image();
    photoArray[2].src = "photos/products/quotes/clear.jpg";
    photoArray[3] = new Image();
    photoArray[3].src = "photos/products/quotes/elegant.jpg";
    photoArray[4] = new Image();
    photoArray[4].src = "photos/products/quotes/frost.jpg";
    photoArray[5] = new Image();
    photoArray[5].src = "photos/products/quotes/green.jpg"; 
	photoArray[6] = new Image();
    photoArray[6].src = "photos/products/quotes/lowe.jpg"; 
	photoArray[7] = new Image();
    photoArray[7].src = "photos/products/quotes/radiant.jpg"; 

    url = new Array();
    url[0] = "#";
    url[1] = "#";
    url[2] = "#";
    url[3] = "#";
    url[4] = "#";
    url[5] = "#";
    url[6] = "#";
    url[7] = "#";

    }

function rotatePhoto() {
    if (photoNum < photoArray.length - 1) photoNum++;
    else photoNum = 0;
  document.displayedPhoto.src = photoArray[photoNum].src;
  setTimeout('rotatePhoto()', photoSpeed);
}

function switchPhoto() {
  window.location.href = url[photoNum];
}

//end hide me -->