/* mega menu hide and show   26 July 2011 */ 

$(document).ready(function() 
{
		$('#mega').hide();	//Initial hideing of the menu

		$('#button').mouseenter(function()	//Show menu when mouse enters button
		{
		$('#mega').show();
		});
		
		$('#mega').mouseleave(function()	//Hide menu when mouse leaves
		{
		$('#mega').hide();
		});
});
