/* 
This menu object will disconnect the sub-menus
from the main menu, to allow drop-shadows. 
*/

var Menu = {
	init: function () {
		// Align submenus
		// $('#menu')
	},
	onMouseOver: function (event) {
		// Show submenu
		// event.target.id
	}, 
	onMouseOut: function (event) {
		// Hide submenu
		// event.target.id
	}
}

// Initialize the menu on document ready.
$(document).ready( Menu.init );
