function bannerSetup()
{
	// Create the horizontal banner, bound to "banner-top" div element,
	// 900 pixels wide, with height of 150 pixels, background color equal
	// to #FF9900, batch rotation interval is equal to 5000 milliseconds
	// (5 seconds):
	var fb_h = new FadingBanner("promobar", "horizontal", 900, 200, "#FFFFCC", 5000);

	// Add an image 'h-api-competition.jpg', which is: width = 130px
	// and height = 90px, 
	// and it will link to 'http://www.codeproject.com/Feature/Vista/'.
	// Image is assigned to the batch number 0:
	fb_h.add(0, "/images/banner-modulaire-tent.jpg", 900, 200, "/modulaire-partytent-pro.php");
	//fb_h.add(1, "/images/PromoBarPaviljoentjes.jpg", 900, 200, "/mooie-tuinpaviljoentjes-te-koop.php");

	// Add a single wide image to the batch number 1:
	//fb_h.add(1, "/FadingBanner/h-codeproject.jpg", 900, 150, "http://www.codeproject.com/");

	// Start banner operation:
	fb_h.start();
}

