$(function(){
	$("ul#mainNav li").click(function(){
		$("> ul:not(:animated)" , this).animate({
			height : "toggle",
			duration : "normal",
			opacity : "toggle"
		}, 500 );
		$(".subNav:not(:animated)").fadeOut("slow");
	},
	function(){
		$("> ul" , this).fadeOut("slow");
	});
});
