function doNavBar() {
	document.write('<table align="center" width="100%" style="position:relative; z-order:2;">');
	document.write('<tr>');
	document.write('<td align="center"><span id="navlinks">');
	document.write('<a href="http://joshanon.com/about.html">About</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://joshanon.com/newsletter.html">Newsletter</a>&nbsp;&nbsp;&nbsp;&nbsp;')
	document.write('<a href="http://gallery.joshanon.com/c/josha/gallery-show/G0000IAC3iPOR3uA">Portfolio</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://gallery.joshanon.com">Galleries</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://joshanon.com/workshops.html">Workshops</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://joshanon.com/blog/">Blog</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://joshanon.com/prints.html">Prints</a>&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('<a href="http://joshanon.com/links.html">Links</a></span></td>');
	document.write('</tr>');
	document.write('</table>');
	document.write('<br />');
}

function drawCanvas() {
	jg.clear();
	jg.setStroke(2);
	jg.setColor("#DDDDDD");
	jg.drawRect(0, 0, w, h);
	jg.setColor("#000000");
	jg.setStroke(1);
	jg.fillRect(1, 1, w, h);
	jg.paint();
}

