$(function() {
	if (typeof window.XMLHttpRequest == "undefined") {
		$(document).pngFix(); // fix PNG transparency
		/* test for ie6, and add class to make up for lack of li:hover */
		$("#nav li, #secondNav li").hover(
			function() {$(this).addClass("hover");},
			function() {$(this).removeClass("hover");}
		);
	}
	
	/* enhance drop-down menus */
	$("#nav li ul").hide();
	
	$("#nav>li").hover(
		function() {$(this).children("ul").slideDown("fast");},
		function() {$(this).children("ul").hide();}
	);
	
	
	
	
});
