$(document).ready(function () {
	$.localScroll.defaults.axis = 'x';
	$.localScroll();
});



//for mouse scroll

$(window).bind('mousewheel', function(event,delta) { 
		if (delta > 0) { window.scrollBy(-80,0); 
		} else window.scrollBy(80,0) ; });

