// JavaScript Document


function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function navOnMouseOver(obj) {
	oldbackgroundcolor = obj.style.backgroundColor;
    oldcolour = obj.style.color;
	obj.style.backgroundColor = "#7082a0";
    obj.style.color = "#FFFFFF";
	//obj.style.textDecoration = "underline";
	obj.style.cursor = "pointer";
   	//if (document.getElementById && parseInt(window.navigator.appVersion.charAt(0)) >= 6) obj.style.cursor = "pointer";
}
function navOnMouseOut(obj) {
    obj.style.backgroundColor = oldbackgroundcolor;
	//obj.style.textDecoration = "none";
    //obj.style.color = "#000066";
	obj.style.color = oldcolour;
}
