<!--
if (document.images) {
    onebuttonup       = new Image();
    onebuttonup.src   = "images/link-one.jpg" ;
    onebuttondown     = new Image() ;
    onebuttondown.src = "images/link-one-hover.jpg" ;

    twobuttonup       = new Image();
    twobuttonup.src   = "images/link-two.jpg" ;
    twobuttondown     = new Image() ;
    twobuttondown.src = "images/link-two-hover.jpg" ;

    threebuttonup       = new Image();
    threebuttonup.src   = "images/link-three.jpg" ;
    threebuttondown     = new Image() ;
    threebuttondown.src = "images/link-three-hover.jpg" ;
    
    fourbuttonup       = new Image();
    fourbuttonup.src   = "images/link-four.jpg" ;
    fourbuttondown     = new Image() ;
    fourbuttondown.src = "images/link-four-hover.jpg" ;

    fivebuttonup       = new Image();
    fivebuttonup.src   = "images/link-five.jpg" ;
    fivebuttondown     = new Image() ;
    fivebuttondown.src = "images/link-five-hover.jpg" ;

    sixbuttonup       = new Image();
    sixbuttonup.src   = "images/link-six.jpg" ;
    sixbuttondown     = new Image() ;
    sixbuttondown.src = "images/link-six-hover.jpg" ;

}
function buttondown( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "down.src" );
    }
}
function buttonup ( buttonname )
{
    if (document.images) {
      document[ buttonname ].src = eval( buttonname + "up.src" );
    }
}
// -->