$(document).ready(function(){
	var config = {    
		 sensitivity: 1, // number = sensitivity threshold (must be 1 or higher)    
		 interval: 30, // number = milliseconds for onMouseOver polling interval    
		 over: makeTall, // function = onMouseOver callback (REQUIRED)    
		 timeout: 400, // number = milliseconds delay before onMouseOut    
		 out: makeShort // function = onMouseOut callback (REQUIRED)    
	};

	function makeTall(){  $(this).find('ul').slideDown('fast');}
	function makeShort(){ $(this).find('ul').slideUp('fast');}


	$('.menu_heading').hoverIntent(config);

	$(function()
	{
		$('.scroll-pane').jScrollPane();
	});
	
}); // !jquery