// JavaScript Document
<!-- This script has been in the http://www.javascripts.com Javascript Public Library! -->
<!-- Note that though this material may have been in a public depository, certain author copyright restrictions may apply. -->
<!--Last modified date-by Austin Wright -->
function ldm() {
var months = new Array(13);
months[1] = "Jan.";
months[2] = "Feb.";
months[3] = "Mar.";
months[4] = "Apr.";
months[5] = "May";
months[6] = "June";
months[7] = "July";
months[8] = "Aug.";
months[9] = "Sept.";
months[10] = "Oct.";
months[11] = "Nov.";
months[12] = "Dec.";

var dateObj = new Date(document.lastModified)
var lmonth = months[dateObj.getMonth() + 1]
var fyear = dateObj.getFullYear()
var date = dateObj.getDate()
document.write("Our site was updated " + " " + lmonth + " " + date + ", " + fyear)
}
