// JavaScript Document
$(function(){

				$('#nav li').hover
				(
					function() {
							$(this).find('ul:first').show();
					},
					function() {
							$(this).find('ul:first').hide();
					}
				);
			});
