/*** Javascript to toggle displays ***/


/* Navigation Dropdowns */

$(document).ready(function() {
	$("#customNav li ul").hide();
	$("#customNav li ul li").hide();
	$("#customNav li").hover(function() {
		$(this).find("ul").show();
		$(this).find("li").each(function() {
			$(this).show();
		});
	},
	function() {
		$(this).find("ul").hide();
	});
});

function showSubmenu(event) {
	event.preventDefault();
	$(this).parent().find("ul").show();
}

