function nav() {
	var els = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<els.length; i++) {
		els[i].onmouseover = function() {
			if (this.childNodes[2]) {
				this.style.backgroundColor = "#e0ebd6";
				this.firstChild.style.color = "#003366";
				this.childNodes[2].style.left = "auto";
			}
		}
		els[i].onmouseout = function() {
			if (this.childNodes[2]) {
				this.style.backgroundColor = "transparent";
				this.firstChild.style.color = "#ffffff";
				this.childNodes[2].style.left = "-999em";
			}
		}
	}
}

function flashData() {
	$(".flashData").fadeOut(1000);
}

$(document).ready(function() {
    nav();
	var t = setTimeout("flashData()", 2000);  
});
