function writeYear() {
	var now = new Date();
	document.write(now.getFullYear());
}

startList = function() {

	if (document.all&&document.getElementById) {

		headerLis = document.getElementById("col1").getElementsByTagName("li");

		for (i=0; i < headerLis.length; i++) {

			node = headerLis[i];

			if (node.nodeName=="LI") {

				node.onmouseover=function() {
					this.className+=" over";
				}

				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}

			}

		}

	}

}

window.onload=startList;

