// if you can read this, download firefox

	// this is to make it easier to link to leader's email addresses, and in case one changes, we can
	// just make the change here, instead of having to hunt for it
	
	var emails = new Array();
	emails['Donnie'] = 'gtnavs@comcast.net';
	emails['Timothy'] = 'timothyprice1@gmail.com';
	emails['Mindy'] = 'mindy.heshelman@yahoo.com';
	emails['Sterling'] = 'sterling@gatech.edu';
	emails['Ashley'] = 'mfashurtz@gmail.com';
	emails['webmaster'] = 'bennett.wilson@gatech.edu';
	emails['Joshua'] = 'harkey@gatech.edu';
	
	// update to use SSI
	

function linkVerse(verse) {
	// use bible gateway
	var base = 'http://www.biblegateway.com/passage/?search=';
	var version = ';&version=49;'; // version 49 is NASB
	window.open(base + verse + version, '_blank');
}

function getEmail(person) {
	return emails[person];
}

function sendEmail(person) {
	location.href = 'mailto:' + emails[person];
}