// 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", 168, 104, "#FFFFFF", 5000);

      // fb_h.add(ArrayID, Image URL, Width, Height, Link URL, Alt Text)
	  
	  // Banners	
	  fb_h.add(0, "images/speedline_banner.jpg", 168, 104, "http://www.sheffins.co.uk/show_prodlist.asp?CatID=48&SubCatID=208", "Speedline");    
      fb_h.add(1, "images/naturepro_banner.jpg", 168, 104, "http://www.sheffins.co.uk/show_mprods.asp?manufacturer=NaturePro&input.x=20&input.y=14", "Naturepro");     
	  
      fb_h.add(2, "images/greenloft_banner.jpg", 168, 104, "http://www.sheffins.co.uk/show_prod.asp?ProdID=2822&CatID=35&SubCatID=67", "Greenloft");	  
	  fb_h.add(3, "images/karma_banner.jpg", 168, 104,"http://www.sheffins.co.uk/show_mprods.asp?manufacturer=Karma+Acoustic+Solutions&input.x=14&input.y=17", "Karma Acoustic Solutions");
	
	  
      // Start banner operation:
      fb_h.start();
	  }
	  
	  window.onload = start; 