$(function() {

	// navigation menu effects
	var config = {
		interval: 110,
		over: function() { $(this).children('.dropdown').fadeIn(400); },
		out: function() { $(this).children('.dropdown').fadeOut(1); }
	};
	$('#header > .navigation > ul > li').hoverIntent(config).ahover();

	// This is for the product pages' tabbed menu.
	var tabs = $('#productTabs > ul > li')
	if (tabs.length > 0) tabs.ahover();
});