

function makeNavi(){


document.write('<table class="head"><tr>');

document.write('<td><a href="index.html"><img src="buttons/main.jpg" name="main" onmouseover="depress(document.main);" onmouseout="release(document.main);"></a></td>');

document.write('<td><a href="history.html"><img src="buttons/history.jpg" name = "history" onmouseover="depress(document.history);"onmouseout="release(document.history);"></a></td>');

document.write('<td><a href="theory.html"><img src="buttons/theory.jpg" name="theory" onmouseover="depress(document.theory);" onmouseout="release(document.theory);"></a></td>');

document.write('<td><a href="gallery.html"><img name="gallery" src="buttons/gallery.jpg" onmouseover="depress(document.gallery);" onmouseout="release(document.gallery);"></a></td>');

document.write("</tr></table>");
}

function depress(im){
	im.src="buttons/" + im.name + "_p.jpg";
}

function release(im){
	im.src="buttons/" + im.name + ".jpg";
}

function makeFoot(){
	document.write('<p class="foot"><a href="..">vu/~stodolan</a> / <a href="index.html">main</a></p>');
	document.write('<hr />');
	document.write('<p class="date">Last updated 19-Feb-2004</p>'); 
	document.write('<p class="foot">Webmaster: <i>Nathan Stodola <A href="mailto:stodolan@union.edu">stodolan@union.edu</i></a></p>');
	
}