// JavaScript Document
    function swapImages(){
      var active = jQuery('#myGallery .active');
      var next = (jQuery('#myGallery .active').next().length > 0) ? jQuery('#myGallery .active').next() : jQuery('#myGallery img:first');
      active.fadeOut(2000,function(){
      active.removeClass('active');
      next.fadeIn(1000).addClass('active');
      });  
      var active1 = jQuery('#myGallery1 .active');
      var next1 = (jQuery('#myGallery1 .active').next().length > 0) ? jQuery('#myGallery1 .active').next() : jQuery('#myGallery1 img:first');
      active1.fadeOut(1000,function(){
      active1.removeClass('active');
      next1.fadeIn(1000).addClass('active');	  
      });
	  
      var active2 = jQuery('#myGallery2 .active');
      var next2 = (jQuery('#myGallery2 .active').next().length > 0) ? jQuery('#myGallery2 .active').next() : jQuery('#myGallery2 img:first');
      active2.fadeOut(500,function(){
      active2.removeClass('active');
      next2.fadeIn(500).addClass('active');		  
	  
      });
	  
      var active3 = jQuery('#myGallery3 .active');
      var next3 = (jQuery('#myGallery3 .active').next().length > 0) ? jQuery('#myGallery3 .active').next() : jQuery('#myGallery3 img:first');
      active3.fadeOut(1500,function(){
      active3.removeClass('active');
      next3.fadeIn(1000).addClass('active');		  
	  
      });	  
    }
