var speed = 750;


$("#two").hover(function(){
  $(".divthree").stop(true, false).animate({"left": "280px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "230px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-310px"}, speed);
},function(){
  $(".divthree").stop(true, false).animate({"left": "217px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "103px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-10px"}, speed);
});

$("#three").hover(function(){
  $(".divthree").stop(true, false).animate({"left": "280px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "-260px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-310px"}, speed);
},function(){
  $(".divthree").stop(true, false).animate({"left": "217px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "103px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-10px"}, speed);
});

$("#four").hover(function(){
	$(".divthree").stop(true, false).animate({"left": "-210px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "-260px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-310px"}, speed);
},function(){
  $(".divthree").stop(true, false).animate({"left": "217px"}, speed);
  $(".divtwo").stop(true, false).animate({"left": "103px"}, speed);
  $(".divone").stop(true, false).animate({"left": "-10px"}, speed);
});
