// When the document loads do everything inside here ...
jQuery(document).ready(function() {

	$("#header ul li").hover(
		function() {
			$(this).find('ul:first').css('display', 'block');
		},
		function() {
			$(this).find('ul:first').css('display', 'none');
		}
	);
}
);

