$(document).ready(function() { 

		$("div.scrollable").scrollable({
			
			clickable: false
		});
		$("[title]").tooltip({ 

		        tip: '#tooltip', 
		        // move tooltip a little bit to the right 
		        offset: [-260, -160], 
		
						delay: 5
		    });
});