/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/various/tabbed_pages.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


//onload = function() {
function topnav_sublists() {
	var e, i = 0;
	while (e = document.getElementById('mgs-navlinks').getElementsByTagName ('A') [i++]) {
		if (e.className == 'on' || e.className == 'off') {
		e.onmouseover = function () {
			var getDivs = document.getElementsByTagName('DIV');
				for (var z=0; z<getDivs.length; z++) {
				getDivs[z].className=getDivs[z].className.replace('show', 'hide');
				}
			var getLinks = document.getElementsByTagName('A');
				for (var z=0; z<getLinks.length; z++) {
				getLinks[z].className=getLinks[z].className.replace('on', 'off');
				}	
			this.className = 'on';
			var max = this.getAttribute('title');
			document.getElementById(max).className = "show";
			}
		}
	}
}
				