﻿/*this is for all custom javascript for this site*/
$(document).ready(function() {
function addMega(){
	$(this).addClass("hovering");
	}
function removeMega() {
	$(this).removeClass("hovering");
	}

/*using the hoverintent plugin*/
var megaConfig= {
	interval: 500,
	sensitivity: 4,
	over: addMega,
	timeout: 500,
	out: removeMega
	};
	
$("li.mega").hoverIntent(megaConfig)

});
