// Javascript for the Easy Lobby eadvance web site
// May 2003 -- Domani Software -- Gretchen DeGlopper

// Function to display the rollover image in the side menu when mouse moves over
function swapImage( name, img )
{
	document.images[ name ].src = img
}

// Function to redisplay the original image in the side menu when mouse moves out
function restoreImage( name, img )
{
	document.images[ name ].src = img
}

