
<!--
teamon = new Image;
teamon.src = "http://www.southernmarylandrealty.com/images/left-button-team-on.jpg"; 

teamoff = new Image;
teamoff.src = "http://www.southernmarylandrealty.com/images/left-button-team-off.jpg";

sellon = new Image;
sellon.src = "http://www.southernmarylandrealty.com/images/left-button-selling-on.jpg"; 

selloff = new Image;
selloff.src = "http://www.southernmarylandrealty.com/images/left-button-selling-off.jpg";

manageon = new Image;
manageon.src = "http://www.southernmarylandrealty.com/images/left-button-management-on.jpg"; 

manageoff = new Image;
manageoff.src = "http://www.southernmarylandrealty.com/images/left-button-management-off.jpg";

listingson = new Image;
listingson.src = "http://www.southernmarylandrealty.com/images/southern-maryland-home-listings-on.jpg"; 

listingsoff = new Image;
listingsoff.src = "http://www.southernmarylandrealty.com/images/southern-maryland-home-listings-off.jpg";

searchon = new Image;
searchon.src = "http://www.southernmarylandrealty.com/images/top-button-home-search-on.jpg"; 

searchoff = new Image;
searchoff.src = "http://www.southernmarylandrealty.com/images/top-button-home-search-off.jpg";

contacton = new Image;
contacton.src = "http://www.southernmarylandrealty.com/images/top-button-contact-on.jpg"; 

contactoff = new Image;
contactoff.src = "http://www.southernmarylandrealty.com/images/top-button-contact-off.jpg";

affordon = new Image;
affordon.src = "http://www.southernmarylandrealty.com/images/can-you-afford-a-home-on.jpg"; 

affordoff = new Image;
affordoff.src = "http://www.southernmarylandrealty.com/images/can-you-afford-a-home-off.jpg";


// FUNCTIONS
function
img_act(imgName) {
imgon = eval(imgName + "on.src");
document [imgName].src = imgon;
}
function
img_inact(imgName) {
imgoff = eval(imgName + "off.src");
document [imgName].src = imgoff;
}

// -->