// Rollover Script
function swapImage(imageID, imagePath) {
	var imgID;
	imgID = document.getElementById(imageID);
	imgID.src = imagePath;
}

function mailpage() {
  mail_str = "mailto:?subject= " + document.title;
  mail_str += "&body= Please see the following page on Tufts\' Beyond Boundaries website: ";
  mail_str += " " + location.href; 
  location.href = mail_str;
}
