/* script to add img to banana as per page */
var eImg = "/images/header-image.jpg";
var aImg = "Building the future of hope through the hearts of people who care.";
switch(document.location.pathname){
	case "/about":
		eImg = "/images/aboutuspage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/contact3":
		eImg = "/images/contactuspage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/media/current_events":
		eImg = "/images/currenteventspage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/donate":
		eImg = "/images/donatepage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/programs/high_impact_volunteer":
		eImg = "/images/highimpactvolpage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/programs/new_life_program":
		eImg = "/images/nlpinfopage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/programs/new_life_program":
		eImg = "/images/nlpinfopage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/programs":
		eImg = "/images/programspage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/programs/new_life_program":
		eImg = "/images/nlpinfopage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
	case "/volunteer":
		eImg = "/images/volunteerpage.jpg";
		aImg = "Building the future of hope through the hearts of people who care.";
	break;
}
document.write("<img src='"+eImg+"' alt='"+aImg+"' >");
