<!--
// This script swaps the style of the cell

var isDom = document.getElementsByTagName

if ( navigator.appVersion.indexOf( "MSIE 5" ) > -1 && navigator.platform.indexOf ( "Mac" ) > -1 )
{
    isDom = 0;
}

var navBar = new Object

function swapStyle( link )
{
    if ( !isDom )
    {
        return;
    }

    cell = link.parentNode
	
	if ( link.className.indexOf( "Highlight" ) == -1 )
	{
        link.className += "Highlight";
    }
	else
    {
        link.className = link.className.substr( 0, link.className.length - 9 );
    }
	
	if ( cell.className.indexOf( "Highlight" ) == -1 )
	{
        cell.className += "Highlight";
    }
	else
    {
        cell.className = cell.className.substr( 0, cell.className.length - 9 );
    }
}

//-->