;/**
  * Campus Travel Menu
  * 
  */
CT.MENU = 
{
    init: function()
    {         
			function hoverOverMenu(){
				$(this).addClass("hover");
			}
			
			function hoverOutMenu(){
				$(this).removeClass("hover");
			} 
			
			var megaMenuOptions = {
				sensitivity: 7,
				interval: 30,
				over: hoverOverMenu,
				timeout: 100,
				out: hoverOutMenu
			};
			
			$("ul#menu").children('li').hoverIntent(megaMenuOptions);
    }
};


