// JavaScript Document
/*
$(document).ready(function () { 
     
    $('#nav li').hover(
        function () {
            //show its submenu
            $('ul', this).slideDown(10);
 
        }, 
        function () {
            //hide its submenu
            $('ul', this).slideUp(500);         
        }
    );
     
});
*/

// JavaScript Document
$(document).ready(function () { 
   
        var config = {    
     	over: makeTall, // function = onMouseOver callback (REQUIRED)    
     	timeout: 1000, // number = milliseconds delay before onMouseOut    
     	out: makeShort // function = onMouseOut callback (REQUIRED)    
		};
		 function makeTall() {
            //show its submenu
            $('ul', this).slideDown(10);
         }
        function makeShort() {
            //hide its submenu
            $('ul', this).slideUp(500);         
        }
		 $("#nav li").hoverIntent(config) 
});
