$(document).ready(function(){
	if (mph == null || typeof(mph) != "object") { var mph = {};}
	mph.nav = {
		init : function() {
			$("#nav a").mouseover(function(event) {
				$(event.target).parent().addClass("highlightOn");
			});
			$("#nav a").mouseout(function(event) {
				$(event.target).parent().removeClass("highlightOn");
			});
		}
	}
	mph.nav.init();
});
	

