$(document).ready(function() { 
		$.easing.custom = function (x, t, b, c, d) { 
		    var s = 1.70158;  
		    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; 
		    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; 
		}

		api = $("#scrollit").scrollable({
			    size: 1 
			    ,easing: 'custom'
			    , speed: 700
			}).autoscroll({ 
			    autoplay: true 
			    ,autopause: true
			    ,interval: 7000  
			}).mousewheel(100).navigator({
				    api : true
				    ,indexed : false
			});
		
			$(".trigger").tooltip({ 
			    position: "bottom center", 
			    opacity: 0.7, 
			    tip : '#tooltipp'
			    ,effect: 'slide'
			    ,offset: [10, 0]
			});

	});