  $(document).ready(function(){
     $(".move1st").click(function(){
	     function next(){
      $("#img2nd").fadeOut(300,opun);
    }
		 function opun(){
      $("#img1st").fadeIn(300);
    }
     $("#img3rd").fadeOut(300,next)
     });
	 });

  $(document).ready(function(){
     $(".move2nd").click(function(){
	     function next(){
      $("#img1st").fadeOut(300,opun);
    }
		 function opun(){
      $("#img2nd").fadeIn(300);
    }
     $("#img3rd").fadeOut(300,next)
     });
	 });

  $(document).ready(function(){
     $(".move3rd").click(function(){
	     function next(){
      $("#img1st").fadeOut(300,opun);
    }
		 function opun(){
      $("#img3rd").fadeIn(300);
    }
     $("#img2nd").fadeOut(300,next)
     });
	 });
