$(document).ready(function() {

	$("#slider").simplyScroll({
			className: 'vert',
			horizontal: false,
			autoMode: 'loop',
			pauseOnHover: true,
			frameRate: 24,
			speed: 1
	});


	$(".prev2").mouseover(function(){
		$(this).attr('src', '/images/arrow_01_01.jpg')
	});

	$(".prev2").mouseout(function(){
		$(this).attr('src', '/images/arrow_02_01.jpg')
	});

	$(".next2").mouseover(function(){
		$(this).attr('src', '/images/arrow_01_02.jpg')
	});

	$(".next2").mouseout(function(){
		$(this).attr('src', '/images/arrow_02_02.jpg')
	});

});
