// Homepage Banners
    function start()
    {
      // JS setup:

      // Banner with simultaneous emergence and fade-out:

      // Create the horizontal banner, bound to "banner" div element,
      // 458 pixels wide, with height of 143 pixels, background color equal
      // to #FFFFFF, batch rotation interval is equal to 7500 milliseconds
      // (7.5 seconds):
	  
	  // Div target
      var fb_h = new FadingBanner("banner", "horizontal", 542, 200, "#FFFFFF", 5000);

      // fb_h.add(ArrayID, Image URL, Width, Height, Link URL, Alt Text)
	  
	  // Banners	  
      fb_h.add(0, "images/scrolling1.gif", 542, 200, "", "Blah");      
      fb_h.add(1, "images/scrolling2.gif", 542, 200, "", "Blah");


      // Start banner operation:
      fb_h.start();
	  }
	  
	  window.onload = start; 