/*@cc_on
function nbar()
{
  var N = document.getElementById( 'NB' ).childNodes;
  var L = N.length;
  var n = null;

  do { --L; n = N[ L ]; with ( n ) { if ( nodeName == 'LI' ) {
    onmouseover = function() { this.className = 'over'; }
    onmouseout  = function() { this.className = ''; }
  } } } while ( L > 0 );
}
@*/

