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("banner-top", "horizontal", 900, 150, "#CCCCCC", 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-TTD-P04-100.jpg", 900, 150, "#P04");
	fb_h.add(1, "/images/Banner-TTD-O16-400.jpg", 900, 150, "#O16");
	fb_h.add(2, "/images/Banner-TTC-IR01-520.jpg", 900, 150, "#IR01");
	fb_h.add(3, "/images/Banner-TTC-B01-480.jpg", 900, 150, "#B01");

	// 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();
}

