$(document).ready(function() {
	$('.button').hover(function(){
		$(".arrow_left", this).stop().animate({left:'10px'},{queue:false,duration:150});
		$(".arrow_right", this).stop().animate({left:'-10px'},{queue:false,duration:150});
		$(this).addClass('active');
	}, function() {
		$(".arrow_left", this).stop().animate({left:'0'},{queue:false,duration:150});
		$(".arrow_right", this).stop().animate({left:'0'},{queue:false,duration:150});
		$(this).removeClass('active');
	});
});
