// JavaScript Document
if (document.images) {
	home_on = new Image();home_on.src = "/images/home_on.gif"
	home_off = new Image();home_off.src = "/images/home_off.gif"
	smcontact_on = new Image();smcontact_on.src = "/images/smcontact_on.gif"
	smcontact_off = new Image();smcontact_off.src = "/images/smcontact_off.gif"
	housing_on = new Image();housing_on.src = "/images/housing_on.gif"
	housing_off = new Image();housing_off.src = "/images/housing_off.gif"
	health_on = new Image();health_on.src = "/images/health_on.gif"
	health_off = new Image();health_off.src = "/images/health_off.gif"
	credit_on = new Image();credit_on.src = "/images/credit_on.gif"
	credit_off = new Image();credit_off.src = "/images/credit_off.gif"
	bizdev_on = new Image();bizdev_on.src = "/images/bizdev_on.gif"
	bizdev_off = new Image();bizdev_off.src = "/images/bizdev_off.gif"
	cfsc_on = new Image();cfsc_on.src = "/images/cfsc_on.gif"
	cfsc_off = new Image();cfsc_off.src = "/images/cfsc_off.gif"
	mission_on = new Image();mission_on.src = "/images/mission_on.gif"
	mission_off = new Image();mission_off.src = "/images/mission_off.gif"
	about_on = new Image();about_on.src = "/images/about_on.gif"
	about_off = new Image();about_off.src = "/images/about_off.gif"
	publications_on = new Image();publications_on.src = "/images/publications_on.gif"
	publications_off = new Image();publications_off.src = "/images/publications_off.gif"
	related_on = new Image();related_on.src = "/images/related_on.gif"
	related_off = new Image();related_off.src = "/images/related_off.gif"
	news_on = new Image();news_on.src = "/images/news_on.gif"
	news_off = new Image();news_off.src = "/images/news_off.gif"
	contact_on = new Image();contact_on.src = "/images/contact_on.gif"
	contact_off = new Image();contact_off.src = "/images/contact_off.gif"
	business_on = new Image();business_on.src = "/images/business_on.gif"
	business_off = new Image();business_off.src = "/images/business_off.gif"
	accomplishments_on = new Image();accomplishments_on.src = "/images/accomplishments_on.gif"
	accomplishments_off = new Image();accomplishments_off.src = "/images/accomplishments_off.gif"
	services_on = new Image();services_on.src = "/images/services_on.gif"
	services_off = new Image();services_off.src = "/images/services_off.gif"
	entrepreneurs_on = new Image();entrepreneurs_on.src = "/images/entrepreneurs_on.gif"
	entrepreneurs_off = new Image();entrepreneurs_off.src = "/images/entrepreneurs_off.gif"
}

function rollOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "_on.src")
	}
}

function rollOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "_off.src")
	}
}
