$(document).ready(function() {
	$('#nav-incorp').hover(function() {
		// display the submenu
			$('#nav-incorp div ul').show();

		},

		function() {
			// display the submenu
			$('#nav-incorp div ul').hide();
		});

	$('#nav-biz').hover(function() {
		// display the submenu
			$('#nav-biz div ul').show();

		},

		function() {
			// display the submenu
			$('#nav-biz div ul').hide();
		});

	$('#nav-trade').hover(function() {
		// display the submenu
			$('#nav-trade div ul').show();

		},

		function() {
			// display the submenu
			$('#nav-trade div ul').hide();
		});

	$('#nav-learn').hover(function() {
		// display the submenu
			$('#nav-learn div ul').show();

		},

		function() {
			// display the submenu
			$('#nav-learn div ul').hide();
		});

	$('#nav-partners').hover(function() {
		// display the submenu
			$('#nav-partners div ul').show();

		},

		function() {
			// display the submenu
			$('#nav-partners div ul').hide();
		});

});

