var hiliitem = "footItemOver", normitem = "footItem";function hiliBarItem( obj ) {	obj.className = hiliitem;}function restoreBarItem( obj ) {	obj.className = normitem;}function initFooterMenu( obj ) {     var bar = obj.children;	var lg = bar.length;	var barItem;     	for ( var i = 0; i < lg; ++i ) {			barItem = eval( bar[ i ] );			/**********************************************************************************			The function "Do(...)" is defined in JavaScript Library "CascadeMenu".			That Library is supposed to be called simultaneously with this one.			**********************************************************************************/			if ( barItem.cmd != null ) { barItem.onclick = new Function( "Do(" + barItem.id + ")" ); }			         		barItem.onmouseover = new Function( "hiliBarItem(" + barItem.id + ")" );			barItem.onmouseout = new Function( "restoreBarItem(" + barItem.id + ")" );        	}  }