$(document).ready(function(){
	$("#nav-holder").animate({
		opacity: .5, speed: 10
	});
	
	$("#projectLogo").animate({
		opacity: 1, speed: 10
	});
	$("#logo-holder").animate({
		opacity: .5, speed: 10
	});
	
	if($.browser.safari) { 
		$( function() {
			$("#logo-holder").animate({
				opacity: 1, speed: 10
			});
		});
	}
	
	$("#dhSubNav li:first-child a").addClass("first");
	
	$("table tr:odd").addClass("alt");
	
	$("#intro p:last-child").addClass("last");
	
	/* add class to table hovers on the schedule page */
	$(".week table").hover(function(){
		$(this).addClass("hover");
		},function(){
		$(this).removeClass("hover");
	});
});