// JavaScript Document
$(document).ready(function() {

// THE MINI NAV FLYOUTS
	
	// all flyouts should hide themselves after mousing out
	$('.mininav-flyout').mouseout(function() {
		$(this).hide();
	});
	
	$('#mininav-list > li').mouseover(function() {
		// make sure all other flyouts are hidden?
		$('.mininav-flyout').hide();
		// now reveal the appropriate flyout
		$(this).find('.mininav-flyout').show()
	});
	
	
	
	
});
//]]>
