﻿var jQuery = $.noConflict();

 jQuery(document).ready(function (jQuery) {
     OnResize();
     window.onresize = OnResize;

     if (document.getElementById('tblSlideShow')) {
         if (images.length > 1) {
             Animate(3000, 4000, images, "Img1", "Img2");
         }
         else {
             jQuery("#tblSlideShow").css('display', 'none');
         }

         jQuery(".previous").click(previous);
         jQuery(".next").click(next);
     }

    
 });
        

