if( document.getElementById ) {
	getElemById = function( id ) {
		return document.getElementById( id );
	}
} else if( document.all ) {
	getElemById = function( id ) {
		return document.all[ id ];
	}
} else if( document.layers ) {
	getElemById = function( id ) {
		return document.layers[ id ];
	}
}

function navOver( td_id ) {
	getElemById( td_id ).className='nav_selected';
}

function navOut( td_id ) {
	getElemById( td_id ).className='';
}
