// rollover.js
// (c) 2002 Turbocam Inc., all rights reserved.
// Written by Ian Jukes, May 26th 2003

if ( document.images ) {
	globe_off = new Image() ;
	globe_off.src = "/stock/images/button-globe-off.gif" ;
	globe_on = new Image() ;
	globe_on.src = "/stock/images/button-globe-on.gif" ;
} // End if

function img_on( name ) {
	if ( document.images ) {
		document[name].src = eval( name + "_on.src" ) ;
	} // End if
} // End img_on()

function img_off( name ) {
	if ( document.images ) {
		document[name].src = eval( name + "_off.src" ) ;
	} // End if
} // End img_off()