var curItem = -1;
var itemCount = 3;
var title = ['Watford Filmhouse is a box office smash'
,'Top stand up comedy comes to the Pump House'
,'Folk at the Pump House'
];
var link = ['http://ph.acutest.com/cgi-bin/pumphouse/site.pl?fn=watford_filmhouse'
,'http://ph.acutest.com/cgi-bin/pumphouse/site.pl?fn=giggle_inn_comedy'
,'http://ph.acutest.com/cgi-bin/pumphouse/site.pl?fn=pump_house_folk&x=news'
];
var description = ['Born out of a desire to see films that are not available locally, WATFORD FILMHOUSE continues to show a popular and dive' + 
'rse range of films on a monthly basis. The next screening is Central Station (15) on 23rd July'
,'Starting from Sunday 3rd October The Giggle Inn Comedy Club brings top comedy to the Pump House every month. The first s' + 
'how features renowned comics Milton Jones and Mike Gunn'
,'Folk is back at the Pump House every Friday with some of the leading acts in the country. Check out more on the site.'
];
var expiryDates = ['Wed, 13 Jul 2011 00:00:00 +0000'
,''
,'Tue, 13 Jul 2010 00:00:00 +0000'
];

function changeContent() {
	var moveToNextValidItem = 1;
	var now = new Date();
	var counter = 0;
	while (moveToNextValidItem) {
		curItem = curItem + 1;
		counter = counter + 1;
		if (curItem == itemCount) {
			curItem = 0;
		}
		if (expiryDates[curItem] == '' || counter > itemCount) {
			moveToNextValidItem = 0;
		}
		else {
			if (Date.parse(expiryDates[curItem]) > now.getTime()) {
				moveToNextValidItem = 0;
			}
		}
	}

	var showTitle = "<p class=\"PHTickerHead\">" 
			+ title[curItem] + "</p><p class=\"PHTickerDesc\">" + description[curItem] + " .&nbsp;.&nbsp;.&nbsp;<b><i>more</i></b></p>";

	if (link[curItem] != '') {
		showTitle = "<a href=\"" + link[curItem] + "\">" + showTitle + "</a>";
	}
	document.getElementById("PHTicker").innerHTML = showTitle;
	var timeToWait = 9000 / 160 * description[curItem].length;
	if (timeToWait < 6000) {timeToWait = 6000;}
	if (timeToWait > 12000) {timeToWait = 12000;}
	window.setTimeout('changeContent()', timeToWait);
}	
