(function ($) {
	$(document).ready(function ( ) {
		$("#menu > li:has(ul)").hover(
			function ( ) {
				$(this).find("ul").show();
			},
			function ( ) {
				$(this).find("ul").hide();
			}
		);
	});
}($jq));

