$(document).ready(function() {
//Image and style switcher:
		$('.thumb').hover( function() {
			var imgSrc = $(this).attr("href");
			var tit = $(this).attr("title");
			$('#headshot').html('<img src="' + imgSrc + '" />');
			$('#namebox').html(tit);
		},
		function(){
			$('#headshot').html('');
			$('#namebox').html('');
	}).click( function() {
		return false;
	});
	//$('.thumb').click( function() { return false; });
});

