// 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", 600, 150, "#FFFFFF", 5000);

      // fb_h.add(ArrayID, Image URL, Width, Height, Link URL, Alt Text)
	  
	  // Banners	  
      fb_h.add(0, "../images/boilerdeal/boiler-banner1.jpg", 761, 173, "#", "Are you looking to replace your old, inefficient boiler with a new energy efficient boilder?");     
      fb_h.add(1, "../images/boilerdeal/boiler-banner2.jpg", 761, 173, "#", "Would you like to generate your own energy and reduce your fuel bills?");	  
	  fb_h.add(2, "../images/boilerdeal/boiler-banner3.jpg", 761, 173, "#", "SAVE up to &pound330 per year on your fuel bills*");
	  
      // Start banner operation:
      fb_h.start();
	  }
	  
	  window.onload = start; 