$(document).ready(function() {

	$("img.staffThumb").click(function () {
            staff_id = $(this).attr("id");
            $(".staffImage").removeClass('staffImageActive');
            $(this).parent().addClass('staffImageActive');
            $(".staffImageBig").html( $("#staff" + staff_id + " .image").html() );
            $(".staffBio").html( $("#staff" + staff_id + " .bio").html() );
            $(".staffName").text( $("#staff" + staff_id + " .name").text() );
	});

});
