/*	ckm.js	*/

/*	
	The only reason this javascript is necessary is because
	we need to support Internet Explorer
*/

/*
	1.	make links work in IE5.0/win
	2.	arrow functionality for internet explorer	
*/
function init() {
	if(document.all) {
		document.getElementById("title").onclick=function() {
			location.href=this.href;
		}
		var a = document.getElementById("nav").getElementsByTagName("a");
		for(var i=0;i<a.length;i++) {
			a[i].onclick=function() {
				location.href=this.href;
			}
		}
	}
	if(document.all && document.getElementById("localNav")) {
		var a = document.getElementById("localNav").getElementsByTagName("a");
		for(var i=0; i<a.length;i++) {
			a[i].onmouseover=function() {
				this.getElementsByTagName("div")[0].style.display="block";
			}
			a[i].onmouseout=function() {
				this.getElementsByTagName("div")[0].style.display="none";
			}
		}
	}
}

onload=init;