/**
 * @author mryan
 */
function rollover(theImage, theName, theExtension)
{
	theImage.src = "/images/" + theName + "_b." + theExtension; 
}

function rollout(theImage, theName, theExtension)
{
	theImage.src = "/images/" + theName + "_a." + theExtension; 
}
