<!--

function setVal(inp_id,f_id)
{
document.getElementById(inp_id).value=document.getElementById(f_id).value;
}
function getVal(f_id)
{
document.getElementById(f_id).click();
}


onLoad = function(){

	if (document.all&&document.getElementById) {
		navRoot_categories = document.getElementById("month");
		if (navRoot_categories)
		for (i=0; i<navRoot_categories.childNodes.length; i++) {
			node_categories = navRoot_categories.childNodes[i];
			if (node_categories.nodeName == "LI") {
				node_categories.onmouseover=function() {
					this.className+=" over";
				}
				node_categories.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
//////////////////////////////////////////////
//set onLoad function
window.onload = onLoad

setClass = function()
{
	el  = this.id
	css = this.className
	if ( css.search('over') != -1 ) this.className = el 
	else 
		this.className = css + '_over'
}


-->
