var obj = null;
var speed = 800;

function showIt() {
	if (obj) {
		obj.find('div').fadeOut(speed);
		obj = null;
	}
	jQuery(this).find('div').fadeIn(speed);	
}

function hideIt() {
	obj = jQuery(this);
    if (obj) {
      obj.find('div').fadeOut(speed);
    }
}

jQuery(document).ready(function()
{
	var config = {    
	     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
	     interval: 200, // number = milliseconds for onMouseOver polling interval    
	     over: showIt, // function = onMouseOver callback (REQUIRED)    
	     timeout: 500, // number = milliseconds delay before onMouseOut    
	     out: hideIt // function = onMouseOut callback (REQUIRED)    
	};

  
  jQuery("#li_Party").hoverIntent( config );
  jQuery("#li_Metz").hoverIntent( config );
  
});
