<!--
var timeDelay = 5;
var pPix = new Array (
"/v2/_ssi/_show.asp?pID=2&isIMG=1","/v2/_ssi/_show.asp?pID=8&isIMG=1","/v2/_ssi/_show.asp?pID=9&isIMG=1","/v2/_ssi/_show.asp?pID=10&isIMG=1","/v2/_ssi/_show.asp?pID=13&isIMG=1","/v2/_ssi/_show.asp?pID=15&isIMG=1");
var pNames = new Array (
"Irish Health Promoting Hospitals Network"
,"Irish Society for Quality and Safety in Healthcare"
,"HSE Population Health Health Intelligence"
,"HSE Population Health, Children and Young People"
,"HSE Office of Consumer Affairs"
,"test"
);
var pURLs = new Array (
"javascript:showPopWin('/v2/_partner.asp?ID=2',750,650,null)"
,"javascript:showPopWin('/v2/_partner.asp?ID=8',750,650,null)"
,"javascript:showPopWin('/v2/_partner.asp?ID=9',750,650,null)"
,"javascript:showPopWin('/v2/_partner.asp?ID=10',750,650,null)"
,"javascript:showPopWin('/v2/_partner.asp?ID=13',750,650,null)"
,"javascript:showPopWin('/v2/_partner.asp?ID=15',750,650,null)"
);
var howMany = pPix.length;
timeDelay *= 1000;
var pPicNum = 0;
var pPic = new Image();
var pURL = new String();
pPic.src = pPix[pPicNum];
function startPix()
{
	setInterval("slideshow()", timeDelay);
}
function slideshow()
{
	pPicNum++;
	if (pPicNum == howMany) {
		pPicNum = 0;
	}
	pPic.src = pPix[pPicNum];
	document.getElementById('PartnerLogo').src = pPic.src;
	document.getElementById('PartnerLogo').alt = pNames[pPicNum];
	if (pURLs[pPicNum].length == 0) {
		document.getElementById('PartnerURL').href = 'javascript:void(0)';
	}
	else {
		document.getElementById('PartnerURL').href = pURLs[pPicNum];
	}
}
//-->
