window.onload = function() {

	var fullNav   = document.getElementById("full-nav");
	var fullNavH3 = fullNav.getElementsByTagName("h3");
	for(var i=0; i<fullNavH3.length; i++){
		fullNavH3[i].firstChild.onmouseover = function() {
			if(this.parentNode.parentNode.className == "current") this.parentNode.parentNode.className = "";
			else{
				for(var j=0; j<fullNavH3.length; j++) fullNavH3[j].parentNode.className = "";
				this.parentNode.parentNode.className = "current";
			}
		}
	}

}



if(/MSIE 6/.test(navigator.userAgent)) try { document.execCommand("BackgroundImageCache", false, true); } catch(e) {}