	
	var secondsToDisplay = 5; //number often in seconds to rotate
	var theCounter = 0; //start the counter at 0

	// place your images, text, etc in the array elements here
	var CatalogueHTML = new Array();
	
	CatalogueHTML[0]="<a href=\"\/Training/pg\" title=\"Speedy Training\"><img src=\"\/-adverts/booktraining.jpg\" width=\"215\" height=\"114\" border=\"0\" alt=\"Speedy Training\" /><\/a>";
	CatalogueHTML[1]="<a href=\"/We_will_beat_any_price/pg\" title=\"25% OFF\"><img src=\"\/-adverts/STSPB.gif\" width=\"215\" height=\"114\" border=\"0\" alt=\"25% OFF\"><\/a>";
	CatalogueHTML[2]="<a href=\"/Air-Conditioning/pg\" title=\"Air Conditioning\"><img src=\"\/-adverts/aircon.gif\" width=\"215\" height=\"114\" border=\"0\" alt=\"Air Conditioning\"><\/a>";

function LoadCatalogue()
{
	document.getElementById('RotatingBanner').innerHTML = CatalogueHTML[theCounter];
	theCounter = (theCounter==CatalogueHTML.length-1) ? 0 : theCounter + 1;
	setTimeout("LoadCatalogue()",secondsToDisplay*1000);
}


function ShowHide(id)
{
	if (document.getElementById)
	{
		obj = document.getElementById(id);
		if (obj.style.display == "none")
		{
			obj.style.display = "";
		} 
	else 
		{
		obj.style.display = "none";
		}
	}
}
