// vim: set expandtab tabstop=3 shiftwidth=3 foldmethod=marker:
// ------------------------------------------------------------
//   Author: Brian Clark (brian@spamcop.net)
//     File: js/common.js
//  Created: 09:46:47 PM EDT Mon, August 27, 2007
// Modified: 03:29:41 PM EDT Tue, August 28, 2007
// ------------------------------------------------------------

function nbover(section) {
   document.getElementById(section).src = 'images/navigation/' + section + '_rollover.png';
   return true;
}

function nbout(section) {
   document.getElementById(section).src = 'images/navigation/' + section + '_normal.png';
   return true;
}

