﻿
	
	
//<![CDATA[

	//this is the regular jquery hover implementation
	//$(document).ready(function () {
	    //$('#navlinks li').hover( 
	        //function () {
	            //$('ul', this).slideDown(100);
	        //},   
	
	        //function () { 
	            //$('ul', this).slideUp(100);
	        //} 
	    //);
	//});
	
	//this is the hoverIntent plugin hover implementation
    $(document).ready(function() {
      
      function addNav(){
        $(this).addClass("hovering");
        }

      function removeNav(){
        $(this).removeClass("hovering");
        }

    var navConfig = {
         interval: 250,
         sensitivity: 4,
         over: addNav,
         timeout: 250,
         out: removeNav
    };

    $("li.nav1").hoverIntent(navConfig)
    $("li.nav2").hoverIntent(navConfig)
    $("li.nav3").hoverIntent(navConfig)

      
    });


    //]]>
