/*
son of suckerfish menu script from:
http://www.htmldog.com/articles/suckerfish/dropdowns/
 */
 
 sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			this.style.zIndex=200; //this line added to force flyout to be above relatively positioned stuff in IE
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "&quot;Real success is finding your lifework in the work that you love.&quot; David McCullough (1933 \- )"
random_text[number++] = "&quot;Try not to become a man of success but rather to become a man of value.&quot; Albert Einstein (1879 \- 1955)."
random_text[number++] = "&quot;Human beings, by changing the inner attitudes of their minds, can change the outer aspects of their lives.&quot; William James (1842 \- 1910)"
random_text[number++] = "&quot;Success usually comes to those who are too busy to be looking for it.&quot; Henry David Thoreau (1817 \- 1862)"
random_text[number++] = "&quot;Knowledge is power.&quot; Sir Francis Bacon (1561 \- 1626)"
random_text[number++] = "&quot;Victory belongs to the most persevering.&quot; Napoleon Bonaparte (1769 \- 1821)"
random_text[number++] = "&quot;Strong reasons make strong actions.&quot; William Shakespeare (1564 \- 1616)"
random_text[number++] = "&quot;Strive for excellence, not for perfection.&quot; H. Jackson Brown Jr."
random_text[number++] = "&quot;Creativity is a drug I cannot live without.&quot; Cecil B. DeMille (1881 \- 1959)"
random_text[number++] = "&quot;Act as if it were impossible to fail.&quot; Dorothea Brande"

var random_number = Math.floor(Math.random() * number);

