			
			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]="Free Catalogue and Gift Pack<br \/><a href=\"\/-Pindar_OrderCatalogue.asp\" title=\"Order your catalogue today\"><img src=\"/skin_default/templateimages/content/CataloguePack.jpg\" width=\"120\" height=\"164\" border=\"0\" alt=\"Order your catalogue today\" vspace=\"5\" /><\/a><br /><div class=\"WhiteLinks\"><a href=\"/-Pindar_OrderCatalogue.asp\" title=\"Order your catalogue today\">Order Now&gt;&gt;<\/a><\/div>";
		    CatalogueHTML[1]="Download your Catalogue Now<br /><a href=\"/Catalogue-Download-Page/pg\" title=\"Download your catalogue today\"><img src=\"/skin_default/templateimages/content/mini_catalogue_cover.jpg\" vspace=\"5\" border=\"0\" height=\"166\" width=\"120\" alt=\"Click here to download your catalogue\"><\/a><br /><div class=\"WhiteLinks\"><a href=\"/Catalogue-Download-Page/pg\" title=\"Download your catalogue today\">Download Now&gt;&gt;<\/a><\/div>";

		function LoadCatalogue()
		{
			document.getElementById('CatalogueMiniBox').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";
				}
			}
		}
		
		
		function BookmarkMe()
		{
		var pageURL=document.location.href
		var pageTitle = document.title
		if(document.all)
		{
		
		if(window.external)
		//It's Internet Explorer
		{
		window.external.AddFavorite(pageURL, pageTitle)
		}
		else if(window.opera && window.print)
		//It's opera
		{
	    alert("Please bookmark this page by pressing\nCTRL+D")
		}		
		}
		else if (window.sidebar)
		//It's Mozilla/Nutscrape
		{
		window.sidebar.addPanel(pageTitle, pageURL, "");
		}
		else
		{
		 alert("Please bookmark this page by pressing\nCTRL+D")
		}
		}
		

