if (document.images )

{
var homesOn = new Image ()
	homesOn.src = "pics/index/homes_2.jpg"
	var homesOff = new Image ()
	homesOff.src = "pics/index/homes.gif"

var communitiesOn = new Image ()
	communitiesOn.src = "pics/index/communities_2.jpg"
	var communitiesOff = new Image ()
	communitiesOff.src = "pics/index/communities.gif"

var galleryOn = new Image ()
	galleryOn.src = "pics/index/gallery_2.jpg"
	var galleryOff = new Image ()
	galleryOff.src = "pics/index/gallery.gif"

var buyerOn = new Image ()
	buyerOn.src = "pics/index/buyers_2.jpg"
	var buyerOff = new Image ()
	buyerOff.src = "pics/index/buyers.gif"

var realtorOn = new Image ()
	realtorOn.src = "pics/index/realtors_2.jpg"
	var realtorOff = new Image ()
	realtorOff.src = "pics/index/realtors.gif"

var resourcesOn = new Image ()
	resourcesOn.src = "pics/index/resources_2.jpg"
	var resourcesOff = new Image ()
	resourcesOff.src = "pics/index/resources.gif"

var contactOn = new Image ()
	contactOn.src = "pics/index/contact_2.gif"
	var contactOff = new Image ()
	contactOff.src = "pics/index/contact.gif"

}
function turnOn (imgName) {
	if (document.images)
	document [imgName].src = eval (imgName + "On.src");
}

function turnOff (imgName) {
	if (document.images)
	document [imgName].src = eval (imgName + "Off.src");
}

function sectionturnOn (imgName,img) {
	if (document.images)
	document [imgName].src = eval (img + "On.src");
}

function sectionturnOff (imgName,img) {
	if (document.images)
	document [imgName].src = eval (img + "Off.src");
}

