$(document).ready(function() {
	/*
	$('#nav ul > li').click(function(e) {
		$('#nav ul ul').hide();
		$(this).find('ul').toggle();
	});
	*/
	$('#nav ul > li').mouseover(function(e) {
		$('#nav ul ul').hide();
		$(this).find('ul').toggle();
	});
});

