function test(){alert("suzie")}

function rollover(){
        if(document.images){
                mouseOverArray = new Array();
                // preload image 1
                mouseOverArray["exittour-btn_off"] = new Image(77, 21);
                mouseOverArray["exittour-btn_off"].src = "/images/exittour-btn_off.gif";
                mouseOverArray["exittour-btn_on"] = new Image(77, 21);
                mouseOverArray["exittour-btn_on"].src = "/images/exittour-btn_on.gif";
                mouseOverArray["exittour-btn_text"] = "Exit Tour";

		}
}
        
function doMouseOver( imgName, state ) {

                // performs mouseover image and status bar text swapping

                // imgName is the HTML image name specified in the <img> tag

                // state must be on, off or down



                        // hide from browsers that don't support the image object

                        if ( !document.images )

                                return false;

                // replace image

                document.images[ imgName ].src = mouseOverArray[ imgName + "_" + state ].src;

                // if needed, display or clear the status bar text

                if ( mouseOverArray[ imgName + "_text" ] != "" ) {

                        if ( state != "off" ) {

                                window.status = mouseOverArray[ imgName + "_text" ];

                                return true; //supresses display of link URL in on MouseOver

                        } else {

                                window.status = "";

                                return false;

                        }

                }

                return false;

}