function lastUpdated()
{
	var cc = '"#888888"';
	var dd = document.getElementById("dater");
	
	if (dd != null)
		{
		var mofy = Array("January ","February ","March ","April ","May ","June ","July ","August ","September ","October ","November ","December ");
		var lastdate = new Date(document.lastModified); 
		var year = lastdate.getYear() % 100;
		
		// fix IE and Opera
		year += (year < 38) ? 2000 : 1900;
		dd.innerHTML = "<font color=" + cc + "><i>Last Updated: " + mofy[(lastdate.getMonth())] + lastdate.getDate() + ", " + year + "</i></font>";
		}
}


document.observe('dom:loaded', function ()
	{
	$$('.contact-link').each(
		function(e){
			Event.observe( e, 'click', function()
				{ 
				var foo = ('fatlion' + '99@' + 'yahoo.c' + 'om')				
				window.location.href = 'mailto:' + foo; return false;
				})	
		 	}
	 	);
	 	
	lastUpdated();
	}
);
