// Window Function for Image Tip of the Day
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


/*<SCRIPT LANGUAGE="JavaScript">
quotes random, but not dymanic
//store the quotations in arrays
quotes = new Array(3);
authors = new Array(3);
quotes[0] = "Kinza's presentation hit our concerns right on target!";
authors[0] = "J. Gasperic, Scribner, Cohen & Company";
quotes[1] = "Kinza's show was fabulous. People have requested that we have her back.";
authors[1] = " M. Walloch, R.N. Aurora Health Care";
quotes[2] = "Truly a wonderful speaker.  Kinza is one of a kind.";
authors[2] = " J. Burt, Society of Radiological Technologists";
//quotes[3] = "The pure and simple truth is rarely pure and never simple.";
//authors[3] = "Oscar Wilde";
//quotes[4] = "There's no business like show business, but there are several businesses like accounting.";
//authors[4] = "David Letterman";
//quotes[5] = "Man invented language to satisfy his deep need to complain.";
//authors[5] = "Lily Tomlin";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);
 

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done
</SCRIPT>

*/
