//First Page Load
function swapImage(imgName)
{
	
switch (imgName)
{


case 'MissionImg':
//Swap the Images
document.MissionImg.src = 'images/wellspring_15on.jpg';
document.VolunteerImg.src = 'images/wellspring_18.jpg';
document.DonateImg.src = 'images/wellspring_19.jpg';
document.EventsImg.src = 'images/wellspring_20.jpg';
document.ContactImg.src = 'images/wellspring_21.jpg';
document.getElementById('sideNavText').innerHTML = "<p><b>Our mission</b> is to provide emergency and transitional family housing accompanied by supportive services and training for Morgan County families, in an effort to end generational poverty.</p> ";

//Now Set the Div Text
break;

case 'VolunteerImg':
document.MissionImg.src = 'images/wellspring_15.jpg';
document.VolunteerImg.src = 'images/wellspring_18on.jpg';
document.DonateImg.src = 'images/wellspring_19.jpg';
document.EventsImg.src = 'images/wellspring_20.jpg';
document.ContactImg.src = 'images/wellspring_21.jpg';
document.getElementById('sideNavText').innerHTML = "<p><b>Volunteer help</b> is a very important asset to our organization.<br></br>From mowing grass to assisting with children's activities, from house cleaning to tutoring, from handyman projects to transporting clients, your volunteer help allows WellSpring Center provide for the needs of our clients.<br></br><b>If you would like to volunteer</b> and learn more about how you can use your talents and skills to help others, please click on the <b>How to Help</b> button above for more details.</p>";
break;

case 'DonateImg':
document.MissionImg.src = 'images/wellspring_15.jpg';
document.VolunteerImg.src = 'images/wellspring_18.jpg';
document.DonateImg.src = 'images/wellspring_19on.jpg';
document.EventsImg.src = 'images/wellspring_20.jpg';
document.ContactImg.src = 'images/wellspring_21.jpg';
document.getElementById('sideNavText').innerHTML = "<p><b>Your donations</b> are very important to us. <br></br> We can accept pantry and clothing items, as well as monetary donations. <br></br> Please click on the <b>How to Help</b> button above to find out more about how your generous donations can help WellSpring to continue helping others.</p>";
break;

case 'EventsImg':
document.MissionImg.src = 'images/wellspring_15.jpg';
document.VolunteerImg.src = 'images/wellspring_18.jpg';
document.DonateImg.src = 'images/wellspring_19.jpg';
document.EventsImg.src = 'images/wellspring_20on.jpg';
document.ContactImg.src = 'images/wellspring_21.jpg';
document.getElementById('sideNavText').innerHTML = "<p><b>Aug 2009</b> - The annual Martinsville Bluegrass BBQ. Click on <b>Special Events</b> for more information. </p>";
break;

case 'ContactImg':
document.MissionImg.src = 'images/wellspring_15.jpg';
document.VolunteerImg.src = 'images/wellspring_18.jpg';
document.DonateImg.src = 'images/wellspring_19.jpg';
document.EventsImg.src = 'images/wellspring_20.jpg';
document.ContactImg.src = 'images/wellspring_21on.jpg';
document.getElementById('sideNavText').innerHTML = "<p><b>If you are in immediate need of assistance</b> and are a resident or relative of a resident of Morgan County, Indiana; please phone: (765) 342-6661.<br></br> <b>You can also e-mail us</b> at WELLSPRING@WELLSPRINGCENTER.ORG for more information on how we may be able to assist you and the programs that we currently offer.<br></br> <b>Mail-in inquiries</b> should be sent to: WellSpring, P.O. Box 1083, Martinsville, IN 46151-0083.</p>";
break;

}
}
