$(document).ready(function() {

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

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

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

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

});
