function MenuBar_GoTo( url ) 
{
	window.open(url, target="_top"); 
	//window.location.href = url;
}


function MenuBar_Click(tableCellRef, navStyle, url ) 
{
	if (tableCellRef)
		MenuBar( tableCellRef, 0, navStyle );

	if (url !=  undefined)
		MenuBar_GoTo( url );
	else
		MenuBar_GoTo( 'http://www.veterinarylaser.com' );

}


function MenuBar( tableCellRef, hoverFlag, navStyle ) 
{
    	if ( hoverFlag ) 
	{
		switch ( navStyle ) 
		{
			case 1:
				tableCellRef.style.backgroundColor = '#cccccc';
				break;
			default:
				tableCellRef.style.backgroundColor = '#cccccc';
				if ( document.getElementsByTagName ) 
				{
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#cc0000';
				}
		}
	} 
	else 
	{
		switch ( navStyle ) 
		{
			case 1:
				tableCellRef.style.backgroundColor = '#1430AF';
				break;
			default:
				tableCellRef.style.backgroundColor = '#1430AF';
				if ( document.getElementsByTagName ) 
				{
					tableCellRef.getElementsByTagName( 'a' )[0].style.color = '#000000';
				}
		}
	}

}

