$(document).ready(function() {

        var default_name = $(".staffName").text();

	$("img.staffThumb").hover(function () {
            staff_id = $(this).attr("id");
            $(".staffHoverName").text( $("#staff" + staff_id + " .name").text() );
        }, function () {
             $(".staffHoverName").text(default_name);
	});

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

});

