
function menu_Click()
{
	if ( this.enlace != null )
	{
		document.location = this.enlace; 
	}
}

function menu_Over()
{
	if ( this.id != 'select' )
	{
		this.style.color 			= "#FFCC00" ;
	}

	this.style.cursor 		= "pointer" ;
}

function menu_Out()
{
	if ( this.id != 'select' )
	{
		this.style.color 			= "#FF8000";
	}

	this.style.cursor 		= "auto" ;
}

function menu_Init()
{

	var objs = document.getElementsByTagName( "TABLE" ) ;

	for( var o = 0; o < objs.length; o++ )
	{

		if (	objs[o].className != null && 
				objs[o].className.indexOf( 'tbl_menu' ) == 0 )
		{

			var rows	 = objs[o].rows ;

			for ( var r = 0; r < rows.length; r++ )
			{
				var cells  = rows[r].cells;

				for ( var c = 0; c < cells.length; c++ )
				{
					if ( cells[c].id != 'select' )
					{
						cells[c].onclick		= menu_Click ;
						cells[c].onmouseover	= menu_Over ;
						cells[c].onmouseout	= menu_Out ;

						var div = cells[c].getElementsByTagName( "A" ) ;

						if ( div.length == 1 )
						{
							cells[c].enlace	= div[0].href ;
						}
					}
				}
			}
		}
	}
}



