function headerImage(){	date = new Date();	seconds = date.getSeconds();	image = "header" + ((seconds%4)+1) + ".jpg";	document.write("<img src=\"images/" + image + "\" alt=\"they might be giants\" border=\"0\">");}function randomQuote(){    date = new Date();	seconds = date.getSeconds();        document.write("<span class=\"quote\">");		if (seconds%15 == 0) {		    document.write("Now it's over, I'm dead and I haven't done anything that I want... or I'm still alive and there's nothing I want to do. - Dead");        }		else if (seconds%15 == 1) {			document.write("I could never sleep my way to the top, 'cause my alarm clock always wakes me right up. - Hey, Mr. DJ, I Thought You Said We Had A Deal");        }		else if (seconds%15 == 2) {       	 	document.write("Every jumbled pile of person has a thinking part that wonders what the part that isn't thinking isn't thinking of. - Where Your Eyes Don't Go");        }		else if (seconds%15 == 3) {       	 	document.write("I built a little empire out of some crazy garbage called the blood of the exploited working class. - Kiss Me, Son Of God");		}		else if (seconds%15 == 4) {       	 	document.write("Before you crawl you have to learn to fall. You can't see heaven when you're standing tall. - Thunderbird");		}		else if (seconds%15 == 5) { 	    	document.write("I built a little empire out of some crazy garbage called the blood of the exploited working class. - Kiss Me, Son of God");		}	    else if (seconds%15 == 6) { 	    	document.write("Well, the rain falls down without my help, I'm afraid. And my lawn gets wet though I've witheld my consent. - It's Not My Birthday");		}	    else if (seconds%15 == 7) { 	    	document.write("Go ahead, wreck your life. That might be good. - Spiralling Shape");		}	    else if (seconds%15 == 8) { 	        document.write("The hip-hop and the white funk just blew away my puppy's mind. - Youth Culture Killed My Dog");		}		else if (seconds%15 == 9) { 	        document.write("There's a place for those who love their poetry; it's just across from the sign that says &quot;Pros Only.&quot; - Rhythm Section Want Ad");		}		else if (seconds%15 == 10) { 	        document.write("Your ass is grass, and I'm the lawnmower. - Your Mom's Alright");		}		else if (seconds%15 == 11) { 	        document.write("Time is flying like an arrow, and the clock hands go so fast they make the wind blow. And it makes the pages of the calendar go flying out the window, one by one. - Hovering Sombrero");		}		else if (seconds%15 == 12) { 	        document.write("Like Flansy in a soda can, it's trooky-trooky-trooky! - Mr. Xcitement");		}		else if (seconds%15 == 13) { 	        document.write("We were just trying to bug you; we thought that our dreadfulness might a thing to annoy you with. - Someone Keeps Moving My Chair");		}		else if (seconds%15 == 14) {			document.write("I wish I'd gotten to know her before I fell in love. - Out of Jail");		}		else {	        document.write("We can't be silent 'cause they might be giants, and what are we going to do unless they are? - They Might Be Giants");		}    document.write("</span>");}