// Never just chuck code into a JS file, always put it under domready, or forever will your life be plagued with hardship!

window.addEvent("domready", function() {

	// Create an image rotator.
	var imageRotator = new ImageRotator({
		path: "../Images/Banners/",
		max: 5
	});
	imageRotator.run();

});

