function loadStuff() {
	var portrait = Math.floor(Math.random()*3);
	
	<!--This just builds the menu and footer stuffs... Not too pretty, but without a server-side scripting language it's the best we could do at the moment.-->
	if(window.ActiveXObject) {
		<!--IE's stupid "special" case.-->
		document.getElementById("menu").innerHTML='<map name="bee">'+
'<area shape="rect" href="index.html" coords="52,19,198,57">'+
'<area shape="rect" href="about.html" coords="44,73,201,125">'+
'<area shape="rect" href="videos.html" coords="34,143,192,187">'+
'<area shape="rect" href="pictures.html" coords="46,207,187,255">'+
'<area shape="rect" href="downloads.html" coords="36,277,181,329">'+
'<area shape="rect" href="buhlog.html" coords="41,353,175,396">'+
'<area shape="rect" href="buyinplays.html" coords="37,416,184,464">'+
'<area shape="rect" href="links.html" coords="33,483,176,528">'+
'<area shape="rect" href="cobalt.html" coords="27,548,184,593"></map>'+
'<img src="layout_cobalt/base.gif" style="position:absolute; left:-10; top:15; z-index:2;" />'+
'<img src="layout_cobalt/sidebar.gif" usemap="#bee" border="0" style="position:absolute; top:182; left:0; z-index:3;" />'+
'<img src="layout_cobalt/menu_smiley.gif" style="position:absolute; top:15; left:0; z-index:3;" />'+
'<img src="layout_cobalt/menu_babyface.gif" style="position:absolute; top:24; left:183; z-index:3" />'+
'<img src="layout_cobalt/menu_portrait_'+portrait+'.gif" style="position:absolute; top:21; left:735; z-index:1;" />'+
'<img src="layout_cobalt/menu_locket.gif" style="position:absolute; top:172; left:753; z-index:3;" />'+
'<img src="layout_cobalt/menu_crack.gif" style="position:absolute; top:50; left:256; z-index:1;" />'+
'<img src="layout_cobalt/menu_bugs.gif" style="position:absolute; top:175; left:409; z-index:3;" />';

	} else if (navigator.userAgent.toLowerCase().indexOf("opera") != -1){
		<!--Opera... and by extention... Wii!!!-->
		document.getElementById("menu").innerHTML='<map name="bee">'+
'<area shape="rect" href="index.html" coords="52,19,198,57">'+
'<area shape="rect" href="about.html" coords="44,73,201,125">'+
'<area shape="rect" href="videos.html" coords="34,143,192,187">'+
'<area shape="rect" href="pictures.html" coords="46,207,187,255">'+
'<area shape="rect" href="downloads.html" coords="36,277,181,329">'+
'<area shape="rect" href="buhlog.html" coords="41,353,175,396">'+
'<area shape="rect" href="buyinplays.html" coords="37,416,184,464">'+
'<area shape="rect" href="links.html" coords="33,483,176,528">'+
'<area shape="rect" href="cobalt.html" coords="27,548,184,593"></map>'+
'<img src="layout_cobalt/base.gif" style="position:absolute; left:-12; top:16; z-index:2;" />'+
'<img src="layout_cobalt/sidebar.gif" usemap="#bee" border="0" style="position:absolute; top:182; left:-2; z-index:3;" />'+
'<img src="layout_cobalt/menu_smiley.gif" style="position:absolute; top:16; left:0; z-index:3;" />'+
'<img src="layout_cobalt/menu_babyface.gif" style="position:absolute; top:25; left:181; z-index:3" />'+
'<img src="layout_cobalt/menu_portrait_'+portrait+'.gif" style="position:absolute; top:23; left:732; z-index:1;" />'+
'<img src="layout_cobalt/menu_locket.gif" style="position:absolute; top:173; left:751; z-index:3;" />'+
'<img src="layout_cobalt/menu_crack.gif" style="position:absolute; top:50; left:256; z-index:1;" />'+
'<img src="layout_cobalt/menu_bugs.gif" style="position:absolute; top:176; left:407; z-index:3;" />';

	} else {
		<!--Everything else case... We hope they follow rules similar to Firefox... or we just don't have the time to support them!-->
		document.getElementById("menu").innerHTML='<map name="bee">'+
'<area shape="rect" href="index.html" coords="52,19,198,57">'+
'<area shape="rect" href="about.html" coords="44,73,201,125">'+
'<area shape="rect" href="videos.html" coords="34,143,192,187">'+
'<area shape="rect" href="pictures.html" coords="46,207,187,255">'+
'<area shape="rect" href="downloads.html" coords="36,277,181,329">'+
'<area shape="rect" href="buhlog.html" coords="41,353,175,396">'+
'<area shape="rect" href="buyinplays.html" coords="37,416,184,464">'+
'<area shape="rect" href="links.html" coords="33,483,176,528">'+
'<area shape="rect" href="cobalt.html" coords="27,548,184,593"></map>'+
'<img src="layout_cobalt/base.gif" style="position:absolute; left:-12; top:16; z-index:2;" />'+
'<img src="layout_cobalt/sidebar.gif" border="0" usemap="#bee" style="position:absolute; top: 182; left:-2; z-index:3;" />'+
'<img src="layout_cobalt/menu_smiley.gif" style="position:absolute; top:15; left:-1; z-index:3;" />'+
'<img src="layout_cobalt/menu_babyface.gif" style="position:absolute; top:25; left:181; z-index:3" />'+
'<img src="layout_cobalt/menu_portrait_'+portrait+'.gif" style="position:absolute; top:22; left:732; z-index:1;" />'+
'<img src="layout_cobalt/menu_locket.gif" style="position:absolute; top:173; left:752; z-index:3;" />'+
'<img src="layout_cobalt/menu_crack.gif" style="position:absolute; top:50; left:256; z-index:1;" />'+
'<img src="layout_cobalt/menu_bugs.gif" style="position:absolute; top:176; left:408; z-index:3;" />';

	}
	document.getElementById("footerNote").innerHTML="<br /><br /><br /><br />Unless stated otherwise, all pictures <br />and graphics on this website are the <br />property of Smilocide and may <br />not be reproduced in any way, shape,<br />form, or fashion without consent.<br />&copy; Smilocide<br /><b>Page best viewed in Firefox, Opera, or (shudder) IE<br />and in 1024x768 or higher resolution.</b>";
}
