	$(function (){
		$('.box').hover(function(){
			$('.box').stop(true, false).animate({right:'0'},'medium');
		},function(){
			$('.box').stop(true, false).animate({right:'-224'},'medium');
		},500);
		return false;
	});
