
hoverit = function ()
{
	var a = document.getElementsByTagName('DIV');
	var l = a.length;
	for( var i=0; i < l; i++ )
	{
		var el = a[i];
		if( el.className=='hoverit')
		{
			el.onmouseover = function()
			{
				if( window.openHoverit )
				{
					window.openHoverit.className = window.openHoverit.className.split(' hover').join('');
				}
				this.className += ' hover';
				window.openHoverit=this;
			}
			el.onmouseout = function()
			{
				this.className = this.className.split(' hover').join('');
			}
			el.className += ' hover';
			el.className = el.className.split(' hover').join('');
		}
	}
}

window.onLoadFunctions = new Array();
window.onload= function(ev)
{
if(document.getElementById)
	{
		hoverit();
		l = window.onLoadFunctions.length;
		for ( var i = 0; i < l; i ++ )
		{
			f = window.onLoadFunctions[i];
			if(typeof(f) == 'function')
			{
				f(ev);
			}
		}
	}
}




