$(document).ready(function(){

      $("a.showImg1").click(function() {
         $(this).parents("div.main_photos").children("div.image1").show('slow');
         $(this).parents("div.main_photos").children("div.image2").hide('slow');
         $(this).parents("div.main_photos").children("div.image3").hide('slow');
         $(this).parents("div.main_photos").children("div.image4").hide('slow');
         $(this).parents("div.main_photos").children("div.image5").hide('slow');
      });

      $("a.showImg2").click(function() {
         $(this).parents("div.main_photos").children("div.image1").hide('slow');
         $(this).parents("div.main_photos").children("div.image2").show('slow');
         $(this).parents("div.main_photos").children("div.image3").hide('slow');
         $(this).parents("div.main_photos").children("div.image4").hide('slow');
         $(this).parents("div.main_photos").children("div.image5").hide('slow');
      });

      $("a.showImg3").click(function() {
         $(this).parents("div.main_photos").children("div.image1").hide('slow');
         $(this).parents("div.main_photos").children("div.image2").hide('slow');
         $(this).parents("div.main_photos").children("div.image3").show('slow');
         $(this).parents("div.main_photos").children("div.image4").hide('slow');
         $(this).parents("div.main_photos").children("div.image5").hide('slow');
      });

      $("a.showImg4").click(function() {
         $(this).parents("div.main_photos").children("div.image1").hide('slow');
         $(this).parents("div.main_photos").children("div.image2").hide('slow');
         $(this).parents("div.main_photos").children("div.image3").hide('slow');
         $(this).parents("div.main_photos").children("div.image4").show('slow');
         $(this).parents("div.main_photos").children("div.image5").hide('slow');
      });

      $("a.showImg5").click(function() {
         $(this).parents("div.main_photos").children("div.image1").hide('slow');
         $(this).parents("div.main_photos").children("div.image2").hide('slow');
         $(this).parents("div.main_photos").children("div.image3").hide('slow');
         $(this).parents("div.main_photos").children("div.image4").hide('slow');
         $(this).parents("div.main_photos").children("div.image5").show('slow');
      });

}); 
