function addMega(){
		 			 jQuery(this).addClass("hovering");
		  		}
				function removeMega(){
		 			 jQuery(this).removeClass("hovering");
		  		}
			function initializeMenu(){
				var megaConfig = {
				interval: 200,
				sensitivity: 4,
				over: addMega,
				timeout: 200,
				out: removeMega
            };
				/*$('ul.row').columnize({
				width : 150,
				columns: 3,
				lastNeverTallest : true
				});	*/
                try {
    			jQuery("li.mega").hoverIntent(megaConfig);
    } catch (exception) { console.log(exception);
    
    }

	

                }


			jQuery(document).ready(initializeMenu);
