$(document).ready(function(){

	$('ul#topnav li a').mouseover(function(){
										   //$('ul#topnav li ul').hide()
										   $(this).siblings('ul').show('slow');
										   
										   $(this).parent().hover(function() {}, 
											function(){
												$(this).children('ul').hide('slow'); //When the mouse hovers out of the subnav, move it back up
											});

										   });
	
	

});
