function tableMouseOverInit( table, color_s )
{
	if ( table.rows.length < 2 ) return;

	for ( var i = 1; i < table.rows.length; i++ )
	{
		if ( table.rows[i].className != 'clsTableHeader' )
		{
			table.rows[i].onmouseover	= function() { this.className = this.className.replace( 'clsTableRow', 'clsTableRowSelected' ); } //tableMouseOver(this); };
			table.rows[i].onmouseout	= function() { this.className = this.className.replace( 'clsTableRowSelected', 'clsTableRow' ); } //tableMouseOut(this); };
		}
	}
}