// JavaScript Document

if (document.images) {
	rdLogoOut       = new Image();
	rdLogoOut.src   = "images/logo.png";
	rdLogoOver      = new Image();
	rdLogoOver.src  = "images/logo_on.png";
}
function buttonOver( buttonName )
{
	if (document.images) {
	  document[ buttonName ].src = eval( buttonName + "Over.src" );
	}
}
function buttonOut ( buttonName )
{
	if (document.images) {
	  document[ buttonName ].src = eval( buttonName + "Out.src" );
	}
}