$(document).ready(function () {
	$(".profiles").children().not("#tony").not("#arthur").hide();
	$("#thumbs td").hover(function () {
		if ($(this).find('img').length) {
			$(".profiles").children().hide();
			$('#'+$(this).attr('class')).show();
			
			$(this).find('img:first').each(function () {
				var headshot = $(this).attr('src').replace(/_thumb.jpg/, '.jpg');
				$("#headshot img:first").attr('src', headshot);
			});
		}
	}, function () {});
	
	// preload headshots
	$("body").append("<div id='em_preload' style='display: none'></div>");
	$("#thumbs td").each(function () {
		$(this).find('img:first').each(function () {
			var headshot = $(this).attr('src').replace(/_thumb.jpg/, '.jpg');
			$("#em_preload").append('<img src="' + headshot + '" />');
		});
	});
});