var now = new Date();
year = now.getFullYear();
document.write('<a href="index.html">Home</a> |');
document.write(' <a href="rocky_pictures.html">Picture Gallery</a> |');
document.write(' <a href="ceramics_t1.html">My Ceramics</a> |');
document.write(' <a href="sports.html">Sports</a> |');
document.write(' <a href="school.html">School</a> |');
document.write(' <a href="other_stuff.html">Other Stuff</a> |');
document.write(' <a href="links.html">Links</a> |');
document.write(' <a href="sitemap.html">Site Map</a>');
document.write('<br><br>');
document.write('Copyright &copy; 1984-'+ year +' Questions - Comments - Please contact <a href="mailto:webmaster@donutz1.com?subject=Rocky Website">Webmaster</a>');
if (Date.parse(document.lastModified) != 0) {
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
var dateObj = new Date(document.lastModified)
var month = months[dateObj.getMonth()]
var date = dateObj.getDate()
var fyear = dateObj.getYear()
if (fyear < 2000) 
fyear = fyear + 1900
document.write('<br>Last Updated ' + month + " " + date + ", " + fyear); }
