$(document).ready(function() {
		
	$("#nav li").hoverIntent(
		function () {
			$("> ul", this).slideDown(50);
		}, 
		function () {
			$("> ul", this).hide();
		}
	);
	$("#eventsplashnav").hoverIntent(
		function () {
			$(this).animate({bottom: "0"});
			$("p",this).fadeOut("fast");
		},
		function () {
			$(this).animate({bottom: "-42px"});
			$("p",this).fadeIn("slow");
		}
	);
	$("#infosplashnav a").click(function () { 
  		$(this).closest("ul").removeClass().addClass($(this).attr("class"));
	});
	
	$("#nav ul ul li:first-child").before("<li class='topcorners'></li>");
	$("#nav ul li:last-child").after("<li class='bottomcorners'></li>");
	
	$("#nav ul li:has(ul)").find("a:first").append(" &raquo; ");
	
	$('A[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
	});
	
});