// TOP MENU
// open menu tier
function showSub(){
	$(this).children('div').slideDown(400);
}
// close menu tier
function hideSub(){
	$(this).children('div').slideUp(400);
}
// perform hover actions
$(function(){
	$('#menu li').hoverIntent({ over: showSub, out: hideSub, sensitivity: 3, timeout: 400, interval: 100 });
	// wrap all top-level menu links in spans, this allows for a seamless sIFR
	$('#menu > ul > li > a').wrap('<span></span>');
});

// FOOTER MENU
