var d = document;

function mainover (a) {
	var id = "sectionMainNav";
	var el = d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
	if (el != null) {
		var x = el.getElementsByTagName("div");
		for (i=0;i<x.length;i++) {
			if (x.item(i).className.match (/butfirst/) || x.item(i).className.match (/but/) ) {
				if (x.item(i) != a) {
					x.item(i).className = x.item(i).className.replace (/ mainselected/g, "");
				}
			}
		}
	}
	a.className = a.className + " mainselected";
	 
}

function mainout (a) {
	if (a.className.indexOf (" mainselected") > 0 ) {
		a.className = a.className.replace (/ mainselected/g, "");
	}
}
function hide (a) {
	//window.status+="a";
}

function colorMainMenu () {

}

function init () {
	colorMainMenu ();
}


window.onload = init;


