		jQuery(document).ready(function($) {
			$(".d4contentTable").each(function(){
				$(this).find("th:first").addClass("first");
				$(this).find("tr:even").addClass("even");
			});
			
			$(".d4contentTable tr").hover(
				function () {
				  $(this).addClass("hover");
				},
				function () {
				  $(this).removeClass("hover");
				}
			);
		});
