window.onload = initAll;

function initAll()
{
var lastUpdate= new Date(document.lastModified);
var d = new Date();
thisMonth = d.getMonth() + 1;
lastMonth = lastUpdate.getMonth() + 1;
lastYear  = lastUpdate.getFullYear() ;

if (document.getElementById ) 

	{
	if (lastYear >= 2011)		/*skip write if Opera can't get server date*/
	{
	document.getElementById("datep").innerHTML= 'Edited ' + lastMonth +'/' + lastYear + '.';
	}
	document.getElementById("email").innerHTML = 
		'Contact the webmistress at b&#117;&#115;g&#105;&#114;&#108;&#64;&#098;&#117;sgrrrl.or&#103;.' ;	
	      /*add new paragraph after main 
		var myTag = document.createElement('div');
		var myText = document.createTextNode("5/2011: Site host and design changes.");
		myTag.className = 'msgbox';
		myTag.appendChild(myText);
		document.getElementById('maincontent').parentNode.insertBefore(myTag,document.getElementById('maincontent').nextSibling);
		if special message*/
	}
}

/*
	Cool Table Menu
By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com and busgrrrl
Visit http://javascriptkit.com for this and over 400+ other scripts
*/


function movein(which,html)
{
which.style.background='#a73232';
if (document.getElementById)
	{document.getElementById("boxdescription").innerHTML=html; }
	else
	{boxdescription.innerHTML=html;}
}

function moveout(which)
{
	which.style.background='#d9d2ff';
	if (document.getElementById)
		{
		document.getElementById("boxdescription").innerHTML='&nbsp;'
		}
	else
		{
		boxdescription.innerHTML='&nbsp;';
		}
}


