		$(document).ready(function() {
	        $(document).pngFix();
			// Dropdown menu behaviors for IE
			$("#main-nav ul li").hover(function(){
				$(this).addClass("iehover");
			},function(){
				$(this).removeClass("iehover");
			});
			$(document).ready(function(){
			$("table tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
			$("table tr:nth-child(even)").addClass("alt");
			});
		});
		