$(document).ready(function() {
	function dropDownOver() {
		$(this).children('a:first-child').addClass('hoverOn');
		$(this).children('div').stop().fadeIn();
	}
	
	function dropDownOut() {
		$(this).children('a:first-child').removeClass('hoverOn');
		$(this).children('div').stop().fadeOut();
	}
	
	var config = {
		sensitivity: 2,
		interval: 100,
		over: dropDownOver,
		timeout: 250,
		out: dropDownOut
	};
	$('ul#topNav .dd').hoverIntent(config);
});
