      (function($) {
        function init() {
       
       
          $("#transitionEffect").fadeTransition({pauseTime: 5000 ,//this value is in seconds
                                                 transitionTime: 500,
                                                 ignore: "#introslide",
                                                 delayStart: 0,
                                                 manualNavigation: false,
                                                 pauseOnMouseOver: true,
                                                 createNavButtons: true,
                                                 isLimit: true,  //this is added to give limit(or to change i.e increase or decrease pauseTime) other than previous "pauseTime" after one round of navigation button
                                                 anotherPauseTime: 10000}); //if isLimit is True then this variable will replace the value of "pauseTime" with its own value after one round of navingation button.
        }
     
        $(document).ready(init);
      })(jQuery);
      
      
      
      //original code 12july 2011----------------------------------------
//            (function($) {
//        function init() {
//       debugger
//          $("#transitionEffect").fadeTransition({pauseTime: 10000,
//                                                 transitionTime: 500,
//                                                 ignore: "#introslide",
//                                                 delayStart: 0,
//                                                 manualNavigation: false,
//                                                 pauseOnMouseOver: true,
//                                                 createNavButtons: true});
//        }
//        
//        $(document).ready(init);
//      })(jQuery);
      //------------------------------------------------------
