$(document).ready(function(){
/****Scroll****/	
	$("#slide_frame").scrollable({ 
    // one configuration property 
		size: 1, 
		easing: "swing",
		items: "#slider",
		circular: true,
		mousewheel: true,
		speed: 500,
		vertical: false
	})
	.navigator({
		navi: "#slide_nav",
		naviItem: 'a',
		activeClass: 'current',
		history: true
	})
	.autoscroll({
		interval: 10000,
		autopause: true
	});
});	
