/**
 * @author mike
 */
if ( document.all && !window.XMLHttpRequest ) {
	window.addEvent('domready',function(){
		var theItems = document.getElementsByTagName('li');
		for ( l = 0; l < theItems.length; l++ ) {
			thisItem = theItems[l];
			if ( ( thisItem.getElementsByTagName('ul').length > 0 || thisItem.className == 'cms_topnode' ) && thisItem.getElementsByTagName('a').length > 0 ) {
				thisItem.onmouseover = function(){
					this.className += ' over';
				};
				thisItem.onmouseout = function(){
					this.className = this.className.replace(/ over/,'');
				};
			}
		}
	});
}