// 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/specialoffer.png", 600, 150, "http://www.protecdirect.co.uk/special-offers.htm", "Special Offers on PPE Wear");   
 
	  fb_h.add(1, "images/leecooper.jpg", 600, 150, "http://www.protecdirect.co.uk/Workwear-Brands/Lee-Cooper-Workwear.htm", "Lee Cooper Workwear from Protec Direct");    
	 	  fb_h.add(2, "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(3, "images/free-giveaway.gif", 600, 150, "http://www.protecdirect.co.uk/Great-Deals!.htm", "FREE GIVEAWAYS!");     
	  fb_h.add(4, "images/free-delivery-banner_special.gif", 600, 150, "http://www.protecdirect.co.uk/special-offers.htm", "Free delivery on orders over £50");	  
	  fb_h.add(5, "images/value-range.gif", 600, 150, "http://www.protecdirect.co.uk/Value-Range.htm", "Check out our Value Range");
	
	
	
	  
      // Start banner operation:
      fb_h.start();
	  }
	  
	  window.onload = start; 