$(function(){
	$('#navigation li').hover(
		function(){ $(this).find('ul.flyout:first').show(); },
		function(){ $(this).find('ul.flyout:first').hide(); }
	);
	$('#top-menu > li').hover(
		function(){ $(this).find('ul.top-flyout:first').show(); },
		function(){ $(this).find('ul.top-flyout:first').hide(); }
	);
});
