$(function(){

		var config = {    
     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
     interval: 10, // number = milliseconds for onMouseOver polling interval    
     over: function() {$(this).children().children("ul").slideDown(250)},  
     timeout: 300, // number = milliseconds delay before onMouseOut    
     out: function() {$(this).children().children("ul").slideUp(250)}
	 };	
	 var config2 = {    
     sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
     interval: 10, // number = milliseconds for onMouseOver polling interval    
     over: function() {$(this).find("ul").show(250)},  
     timeout: 300, // number = milliseconds delay before onMouseOut    
     out: function() {$(this).find("ul").hide(250)}
	 };

	$(".middle").hoverIntent(config);
	$(".middle").children().children("ul").children("li").hoverIntent(config2);
//	$(".middle").children().children("ul").children("li").css("opacity","0.8");
//	$(".middle").children().children("ul").children("li").find("li").css("opacity","0.8");
});

