/*
 * jQuery functions applied at page load time to make any drop-down for a given menu item
 * appear on mouse over.  Drop-down will disappear when mouse moves off both menu item and 
 * drop-down.
 */
$(document).ready(function() {

	$("#nav ul li").hover(function() {
		$(this).find("ul").slideDown('fast').show();
	}, function() {
		$(this).find("ul").slideUp('fast').hide()
	});

	$("#nav ul li ul").hover(function() {
	}, function() {
		$(this).slideUp('fast').hide();
	});
});