$(document).ready(function(){
	
	$("#Nav").superfish({
	delay: 500,
	animation: { height: "show" },
	speed: 175
	});
	
	$("#PanelNav > li > a.PanelGroupOpener").click( function() {
		if ( $(this).parent().hasClass("Current") ) {
			$(this).next().next("ul").slideUp(
				175,
				function() {
					$(this).children("li").not(".DescriptionItem").css("display","none");
					$(this).children("li.DescriptionItem").css("display","block");
					$(this).fadeIn(175);
					$(this).parent().removeClass("Current");
				}
			);
		} else {
			$(this).next().next("ul").fadeOut(
				175,
				function() {
					$(this).children("li").not(".DescriptionItem").css("display","block");
					$(this).children("li.DescriptionItem").css("display","none");
					$(this).slideDown(175);
					$(this).parent().addClass("Current");
				}
			);
		}
		return false;
	});
	
	$("#QuickContactForm").css("display","none");
	$("#QuickContactOpener").click( function() {
		$("#QuickContactForm").slideToggle(350);
		return false;
	});
});