     $(function() {
            $('#gallery1').crossSlide(
                {
                    speed: 1.2, //in px/sec
                    fade: 0.8    //in sec
					
                },
                [

              { src: 'common/images/home/topmain01.jpg', dir: 'down' },
              { src: 'common/images/home/topmain02.jpg', dir: 'up' },
              { src: 'common/images/home/topmain03.jpg', dir: 'down' },
			  { src: 'common/images/home/topmain04.jpg', dir: 'up' }
			   
			   
                ]
            );
        });
      $(function() {
         $('#gallery2').crossSlide({
            sleep: 2, //in sec
            fade: 2   //in sec
         },
         [
              { src: 'common/images/home/topmain01.jpg' },
              { src: 'common/images/home/topmain02.jpg' },
              { src: 'common/images/home/topmain03.jpg' }
         ]);
      });
      $(function() {
         $('#gallery3').crossSlide({
               fade: 1
            },
            [
               {
                  src:  'common/images/home/topmain01.jpg',
                  from: '100% 80% 1x',
                  to:   '100% 0% 1.7x',
                  time: 3
               },
               {
                  src:  'common/images/home/topmain02.jpg',
                  from: 'top left',
                  to:   'bottom right 1.5x',
                  time: 2
               },
               {
                  src:  'common/images/home/topmain03.jpg',
                  from: '100% 80% 1.5x',
                  to:   '80% 0% 1.1x',
                  time: 2
               },
               {
                  src:  'common/images/home/topmain01.jpg',
                  from: '100% 50%',
                  to:   '30% 50% 1.5x',
                  time: 2
               }
            ]
         );
      });
