﻿$(document).ready(function(){
	$("ul#menucontable li").hoverIntent({
		sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
		interval: 350,   // number = milliseconds of polling interval
		over: showNav,  // function = onMouseOver callback (required)
		timeout: 100,   // number = milliseconds delay before onMouseOut function call
		out: hideNav    // function = onMouseOut callback (required)
 	});
	function showNav(){ $("table", this).css("display", "block");}
	function hideNav(){ $("table", this).css("display", "none");}
});
