﻿/// <reference path="~/scripts/jquery-1.3.2.js" />
$(document).ready(function () {
	var fade = 0.5;
	$("#portraits img")
		.fadeTo("fast", fade, null)
		.hover(
			function () { $(this).fadeTo("fast", 1.0, null); $("#row" + $(this).attr("id").substring(3)).addClass("hovered"); },
			function () { $(this).fadeTo("fast", fade, null); $("#row" + $(this).attr("id").substring(3)).removeClass("hovered"); }
		);
	$("#contactInfo tr").hover(
		function () { $(this).addClass("hovered"); $("#img" + $(this).attr("id").substring(3)).fadeTo("fast", 1.0, null); },
		function () { $(this).removeClass("hovered"); $("#img" + $(this).attr("id").substring(3)).fadeTo("fast", fade, null); }
	);
});