function staffdetails(sid) {
	var spicture;
	var sname;
	var sposition;
	var sphone;
	var semail;
	switch(sid){
		case "jenine":
			spicture = "/images/staff/jenine_head.jpg";
			sname = "Jenine";
			sposition = "Youth Services";
			sphone = "x4321";
			semail = "jlillian@faylib.org";
			break;
		case "justin":
			spicture = "/images/staff/justin_head.jpg";
			sname = "Justin";
			sposition = "Reference Services";
			sphone = "x4410";
			semail = "questions@faylib.org";
			break;
		case "kelly":
			spicture = "/images/pieces/empty.jpg";
			sname = "Kelly";
			sposition = "Reference Services";
			sphone = "x4401";
			semail = "questions@faylib.org";
			break;
		case "laura":
			spicture = "/images/staff/laura_head.jpg";
			sname = "Laura";
			sposition = "Youth Services";
			sphone = "x4324";
			semail = "mailchildrens@faylib.org";
			break;
		case "caitlyn":
			spicture = "/images/staff/caitlyn_head.jpg";
			sname = "Caitlyn";
			sposition = "Youth Services";
			sphone = "x4322";
			semail = "mailchildrens@faylib.org";
			break;
		case "clear":
			spicture = "/images/pieces/empty.jpg";
			sname = "";
			sposition = "";
			sphone = "";
			semail = "";
			break;
	}
	document.getElementById('staffpix').src = spicture; 
	document.getElementById('staffid').innerHTML = sname + "<br /><div class=\'greyNote\'>" + sposition + "<br />" + sphone + "<br />" + semail + "</div>"; 
	if (sid != "clear")
	document.getElementById('pixtable').style.display = 'block';
	else
	document.getElementById('pixtable').style.display = 'none';
}

function fixemail(obj, email, subject) {
	if (subject)
	{
		obj.href = "mailto:" + email + "@" + "faylib.org?subject=" + subject;
	}
	else
		obj.href = "mailto:" + email + "@" + "faylib.org";
}
