

function titleswitch(x)
{
	document.write('<div id="title">');
	switch (x)
	{
		case "home":
			document.write('<img src="home.gif">');
			break
		case "gallery":
			document.write('<img src="gallery.gif">');
			break
		case "comics":
			document.write('<img src="comics.gif">');
			break
		case "tutorials":
			document.write('<img src="tutorials.gif">');
			break
		case "info":
			document.write('<img src="info.gif">');
			break
		case "links":
			document.write('<img src="links.gif">');
			break
	}
	document.write('</div>');	
}




function copyright()
{
	document.write('<div id="footer">');
	document.write("version 4.0<br>all works (C) 2001-2011 <a href='mailto:darkreaver66@hotmail.com'><b>Nicholas Liaw</b></a>");
	document.write('</div>');
}


function tutmenu()
{
	document.write('<div id="left">');
	document.write("<p><u>THE BASICS</u><br><br>");
	document.write("<a href='perspectivetut.html'>perspective of complex objects</a> <br> completed 4/3/03<br><br>");
	document.write("<u>TECHNIQUES</u><br><br>");
	document.write("<a href='linewidthtut.html'>line width variation</a> <br> completed 8/17/03<br><br>");
	document.write("<a href='giftut.html'>animated gifs</a> <br> completed 3/27/11<br><br>");
	document.write('</div>');	
}


		
/*			
	
	
*/
