			jQuery(document).ready(function(){
				$("div#nav ul li").hover(
				  function () { $(this).children("ul").show(); }, 
				  function () { $(this).children("ul").hide(); }
				);
			});
