//<!--
// Copyright decloak, Inc. 2005

var g_hMenuMsg = "";

function hMenuOnMouseOver( objThis ) {
	for (var i = 0; i < 3; i++) {
		objThis.cells[i].className = objThis.cells[i].className + "_HOVER"; 
	}
	var theA = objThis.cells[1].getElementsByTagName("a");	
	theA[0].className = theA[0].className + "_HOVER";
}

function hMenuOnMouseOut( objThis ) {
	for (var i = 0; i < 3; i++) {
		objThis.cells[i].className = objThis.cells[i].className.substring(0, objThis.cells[i].className.lastIndexOf("_") );
	}
	var theA = objThis.cells[1].getElementsByTagName("a");
	theA[0].className = theA[0].className.substring(0, theA[0].className.lastIndexOf("_") );
}


function hMenuOnClick ( objThis )  {
	var theA = objThis.cells[1].getElementsByTagName("a");
	if (objThis.cells[1].className.lastIndexOf("_ON") > -1 && objThis.cells[1].className.lastIndexOf("_ON") + 3 == objThis.cells[1].className.length) return;
	window.location = theA[0].href;

}

//-->

