	var mininewsconfig = {    
		 sensitivity: 3, // number = sensitivity threshold (must be 1 or higher)    
		 interval: 150, // number = milliseconds for onMouseOver polling interval    
		 over: slideNews, // function = onMouseOver callback (REQUIRED)    
		 timeout: 0, // number = milliseconds delay before onMouseOut    
		 out: closeNews // function = onMouseOut callback (REQUIRED)    
	};

	$(document).ready(function() {
		$("#jquerynews .mini_intro").hide();
		$(".mininews").each(function() {
			$(this).children("li").children("ul:first").show();
		});

		$("#jquerynews .mini_link").hoverIntent( mininewsconfig )
	});
	
	function slideNews()
	{
		$(this).siblings("ul").slideDown("slow");
		if ($(this).parent().siblings().children('ul').is(':visible'))
		{
			$(this).parent().siblings().children('ul').slideUp("slow");
		}		
	}
	
	function closeNews()
	{
	}