$(document).ready(function(){
		  $('#one').hover(function(){
		         $(this).children('.front').stop().animate({'left' : '-583px'}, 250);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 250);});
		 $('#two').hover(function(){
		         $(this).children('.front').stop().animate({'left' : '-583px'}, 250);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 250);});
		 $('#three').hover(function(){
		         $(this).children('.front').stop().animate({'left' : '-583px'}, 250);
		 }, function(){$(this).children('.front').stop().animate({'top' : '0px', 'left' : '0px'}, 250);});
});
