$(document).ready(function() {
	
	$(".arrows").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
	
	$(".scrollablebox").scrollable({size: 1, loop: true, next: 'a.nextbtn', prev: 'a.prevbtn'}).circular().autoscroll(5000);

});
