jQuery(document).ready(function(){
	jQuery('#menu > ul > li').hover(function(){
		jQuery(this).find('.children').show();
	}, function(){
		jQuery(this).find('.children').hide();
	});
});