
//Handles the menu flyouts
$(document).ready(function() {
	$("#primary li ul").parent('li').mouseenter(function() {
		if ($(this).find("ul").is(":hidden"))
			$(this).find("ul").slideDown('fast');
	}).mouseleave(function() {
		if ($(this).find("ul").not(":hidden"))
			$(this).find("ul").slideUp('fast');
	});
});

