/* 
-- updated 04.01.10 rdenton to add delay to rollover, which means all browsers use JS for menu now 
-- dependencies: 
/includes/scripts/jquery-ui-1.8/js/jquery-1.4.2.min.js
/includes/scripts/jquery-ui-1.8/js/jquery-ui-1.8.custom.min.js
/includes/scripts/jquery/hoverIntent.js

*/

$(document).ready(function(){
	$("li.drop").hoverIntent(
		function() {
		$(this).find("div.box").animate({opacity: "show", top: "19"}, "medium");
		}, 
	function() {
		$(this).find("div.box").animate({opacity: "hide", top: "35"}, "fast");
	});

}); //close document.ready and function

