	$("document").ready(function() {				
		$('#nav ul.topnav li').hover(
				
			function() {
				$(this).children('ul.subnav').stop(true, true).fadeIn('normal');
		},
			function() {
				$(this).children('ul.subnav').stop(true, true).fadeOut('normal');
		}
		);
		
		$('#contactform input.text').focus
		});
