
	function setupMenu ( )
	{
		var menu_eles = document.getElementsByTagName ( "IMG" );
		for ( var a = 0; a < menu_eles.length; a++ )
		{
			var strtest = menu_eles[ a ].id + "";
			if ( strtest.substr ( 0, 5 ) == "menu_" )
			{
				menu_eles[ a ].over = false;
				menu_eles[ a ].onmouseover = function ( )
				{
					if ( !this.over )
					{
						this.over = true;
						this.img = this.src + "";
						this.src = this.img.replace ( ".gif", "_over.gif" );
					}
				}
				menu_eles[ a ].onmouseout = function ( )
				{
					if ( this.over )
					{
						this.over = false;
						this.src = this.img;
						this.img = this.img.replace ( "_over", "" );
					}
				}
			}
		}
	}
	
	// Set the bottom on the right coords
	function setupBottom ( )
	{
		if ( document.getElementById ( 'bottom' ) )
		{
			var content = document.getElementById ( 'content' );
			
			var to = getElementTop ( content );
			var he = getElementHeight ( content );
			document.getElementById ( 'bottom' ).style.top =  ( he + to - 40 ) + 'px';
			
		}
		else
		{
			setTimeout ( 'setupBottom ( )', 200 );
		}
	}
	
	setupBottom ( );
	setupMenu();

