<!--
	// RANDOM QUOTATION


        var n = 1; // default image
        var r = 9; // total number of images -1

	// find browser name and version
	var bName = navigator.appName;
	var bVersion = parseInt(navigator.appVersion);

	// Math.random does not work in NS2
        if (!(bName == "Netscape" && bVersion == 2)) {
	    n = (Math.round(Math.random()*r) + 1);
        } 

	function test() {
                document.write('I tended to place my wife under a pedestal.[Woody Allen]');
	}

        function random_quotation() {

	    if (n == 1) {
                document.write("I tended to place my wife under a pedestal.[Woody Allen]");
            } else if (n == 2) {
                document.write("Life doesn't imitate art, it imitates bad television.[Woody Allen]");
            } else if (n == 3) {
                document.write("The food here is terrible, and the portions are too small.[Woody Allen]");
            } else if (n == 4) {
                document.write("Eighty percent of success is showing up.[Woody Allen]");
            } else if (n == 5) {
                document.write("I believe there is something out there watching us. Unfortunately, it's the government.[Woody Allen]");
            } else if (n == 6) {
                document.write("I think being funny is not anyone's first choice.[Woody Allen]");
            } else if (n == 7) {
                document.write("The lion and the calf shall lie down together but the calf won't get much sleep.[Woody Allen]");
            } else if (n == 8) {
                document.write("There are two types of people in this world, good and bad. The good sleep better, but the bad seem to enjoy the waking hours much more.[Woody Allen]");
            } else if (n == 9) {
                document.write("Why ruin a good story with the truth?[Woody Allen]");
            } else if (n == 10) {
                document.write("I took a speed reading course and read War and Peace in twenty minutes. It involves Russia.[Woody Allen]");
	    }	 
	}


// -->
