// 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/save-banner.png", 600, 150, "http://www.protecdirect.co.uk/special-offers.htm", "Save 10%! on Personal Protective Equipment");
	fb_h.add(1, "images/ipod-banner.png", 600, 150, "http://www.protecdirect.co.uk/special-offers.htm", "Protec iPod Giveaway");   
	fb_h.add(2, "images/MOLDEX-banner.jpg", 600, 150, "http://www.protecdirect.co.uk/Brand.asp?b=Moldex&x=8&y=12", "Free Moldex Masks at Protec Direct");
	fb_h.add(3, "images/free-giveaway.gif", 600, 150, "http://www.protecdirect.co.uk/Great-Deals!.htm", "FREE GIVEAWAYS!");     
	fb_h.add(4, "images/site-protection-banner.jpg", 600, 150, "http://www.protecdirect.co.uk/temporary-site-protection.htm", "New Product Range - Temporary Site Protection");     
	fb_h.add(5, "images/free-delivery-banner_special.gif", 600, 150, "http://www.protecdirect.co.uk/special-offers.htm", "Free delivery on orders over £50");
	
	  
      // Start banner operation:
      fb_h.start();
	  }
	  
	  window.onload = start; 
