<!--
       
if (document.images) {

	// Put active images here

	img1on = new Image(); img1on.src = "http://StJosephMO.wliinc3.com/images/mn_community_on.gif"; 
	img2on = new Image(); img2on.src = "http://StJosephMO.wliinc3.com/images/mn_membership_on.gif"; 
	img3on = new Image(); img3on.src = "http://StJosephMO.wliinc3.com/images/mn_econdev_on.gif"; 
	img4on = new Image(); img4on.src = "http://StJosephMO.wliinc3.com/images/mn_news_on.gif"; 
	img5on = new Image(); img5on.src = "http://StJosephMO.wliinc3.com/images/mn_events_on.gif"; 
	img6on = new Image(); img6on.src = "http://StJosephMO.wliinc3.com/images/mn_government_on.gif"; 
	img7on = new Image(); img7on.src = "http://StJosephMO.wliinc3.com/images/mn_visitors_on.gif"; 
	img8on = new Image(); img8on.src = "http://StJosephMO.wliinc3.com/images/mn_chamber_on.gif"; 
	
	// Put inactive images here
	
	img1off = new Image(); img1off.src = "http://StJosephMO.wliinc3.com/images/mn_community_off.gif"; 
	img2off = new Image(); img2off.src = "http://StJosephMO.wliinc3.com/images/mn_membership_off.gif"; 
	img3off = new Image(); img3off.src = "http://StJosephMO.wliinc3.com/images/mn_econdev_off.gif"; 
	img4off = new Image(); img4off.src = "http://StJosephMO.wliinc3.com/images/mn_news_off.gif"; 
	img5off = new Image(); img5off.src = "http://StJosephMO.wliinc3.com/images/mn_events_off.gif"; 
	img6off = new Image(); img6off.src = "http://StJosephMO.wliinc3.com/images/mn_government_off.gif"; 
	img7off = new Image(); img7off.src = "http://StJosephMO.wliinc3.com/images/mn_visitors_off.gif"; 
	img8off = new Image(); img8off.src = "http://StJosephMO.wliinc3.com/images/mn_chamber_off.gif"; 

}

// Function to 'activate' images.
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
    }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}

// -->
