$(document).ready(function()
{
   var indexCarousel1Opts =
   {
      delay: 6000,
      duration: 500,
      easing: 'linear',
      mode: 'forward',
      direction: '',
      scalemode: 2,
      pagination: true,
      pagination_img_default: 'images/indexCarousel1-default.png',
      pagination_img_active: 'images/indexCarousel1-active.png',
      pause: null,
      start: 0
   };
   $("#indexCarousel1").carousel(indexCarousel1Opts);
   $("#indexCarousel1_back a").click(function()
   {
      $('#indexCarousel1').carousel('prev');
   });
   $("#indexCarousel1_next a").click(function()
   {
      $('#indexCarousel1').carousel('next');
   });
   $("#nav-container").stickylayer({orientation: 5, position: [0, 0], delay: 0, keepOriginalPos: true});
   $("#wb_navigation ul li a").click(function(event)
   {
      $("#wb_navigation input").prop("checked", false);
   });
   $('img[data-src]').lazyload();
});
   var now = new Date();
   var startYear = " ";
   var text =  "Copyright &copy; ";
   if (startYear != '')
   {
      text = text + startYear + "-";
   }
   text = text + now.getFullYear() + ", TeleData";
   var copyrightnotice = document.getElementById('copyrightnotice');
   copyrightnotice.innerHTML = text;
