 $(document).ready(function() {
   $("#menu1").click(function(){
  $("#full1").animate({"left": "+0px"}, "slow");
  $("#full2").animate({"left": "-547px"}, "slow");
  $("#full3").animate({"left": "-547px"}, "slow");
  $("#full4").animate({"left": "-547px"}, "slow");
});

$("#menu2").click(function(){
  $("#full2").animate({"left": "+0px"}, "slow");
  $("#full1").animate({"left": "-547px"}, "slow");
  $("#full3").animate({"left": "-547px"}, "slow");
  $("#full4").animate({"left": "-547px"}, "slow");
});

$("#menu3").click(function(){
  $("#full3").animate({"left": "+0px"}, "slow");
  $("#full1").animate({"left": "-547px"}, "slow");
  $("#full2").animate({"left": "-547px"}, "slow");
  $("#full4").animate({"left": "-547px"}, "slow");
});

$("#menu4").click(function(){
  $("#full4").animate({"left": "+0px"}, "slow");
  $("#full1").animate({"left": "-547px"}, "slow");
  $("#full2").animate({"left": "-547px"}, "slow");
  $("#full3").animate({"left": "-547px"}, "slow");
});
 });

