var logos = {
	BHAM:
		[	[	"images/Employers/LogoNewman.jpg",
			 //	"images/Employers/LogoBCH.jpg",
			 	"images/Employers/LogoPriory.jpg",
				"images/Employers/LogoSWBH.jpg"
			]
		],
	CCC:
		[	[	"images/LogoCardiffC.gif",
				"images/LogoHyder.gif",
				"images/LogoEA.jpg",
				"images/LogoUWIC.gif",
				"images/LogoWMC.jpg",
				"images/LogoVelNHS.jpg",
				"images/LogoNAW.jpg",
				"images/LogoWJEC.jpg",
		//		"images/LogoTAFF.jpg",
				"images/LogoVAC.jpg",
		//		"images/LogoHazellC.gif",
		//		"images/LogoHBos.gif",
		//		"images/LogoKier.gif",
		//		"images/LogoNHSWales.gif",
		//		"images/LogoRMail.gif",
		//		"images/LogoTBI.gif"
				"images/LogoBBC.gif",
				"images/LogoGlanHafren.gif",
				"images/LogoWCVA.gif"
			]
		],
	CCW:
		[	[	"images/LogoCardiffC.gif",
				"images/LogoHyder.gif",
				"images/LogoEA.jpg",
				"images/LogoUWIC.gif",
				"images/LogoWMC.jpg",
				"images/LogoVelNHS.jpg",
				"images/LogoNAW.jpg",
				"images/LogoWJEC.jpg",
		//		"images/LogoTAFF.jpg",
				"images/LogoVAC.jpg",
				"images/LogoBBC.gif",
				"images/LogoGlanHafren.gif",
				"images/LogoWCVA.gif"
			]
		],
	STAF:
		[	[	"images/Employers/LogoStaffs.jpg",
				"images/Employers/LogoStoke2.jpg",
			 //	"images/Employers/LogoBritannia.jpg",
				"images/Employers/LogoJCB.jpg",
				"images/Employers/LogoNHS.jpg",
				"images/Employers/LogoSpirit.jpg",
				"images/Employers/LogoStaffsUni.jpg"
			],
			[	"images/StaffsLogo.png",
				"images/StokeLogo.png",
				"images/CannockLogo.png",
				"images/EastStaffsLogo.png",
				"images/LichfieldLogo.png",
				"images/NewcastleLogo.png",
				"images/StaffsBoroLogo.png",
				"images/TamworthLogo.png"
			]
		],
	WOLV:
		[	[//	"images/WOLV/CarBug.jpg",
			 //	"images/WOLV/Eyeful.jpg",
			 //	"images/WOLV/Jam1a.jpg"
				"images/LogoNAW.jpg",
				"images/LogoWJEC.jpg",
				"images/LogoTAFF.jpg",
				"images/LogoVAC.jpg",
				"images/LogoHBos.png",
				"images/LogoRMail.png",
				"images/LogoBBC.gif",
			]
		],
	WCC:
		[	[//	"images/EthnicAccess1.gif",
			 //	"images/EthnicAccess2.gif",
			 //	"images/EthnicAccess3.gif",
			 //	"images/EthnicAccess4.gif",
			 //	"images/EthnicAccess5.gif",
			 //	"images/EthnicAccess6.gif",
			 //	"images/EthnicAccess7.gif"
			]
		] // no comma after last attribute
};

var step = 0;

function showLogos(config, set) { // config is e.g. 'BHAM'; (optional) set is 0+ (most configs have only one set of logos)
	if (typeof set == 'undefined') {
		set = 0; // default 2nd arg
	}
	if (document.images) {
		if (document.all) {
			slide.filters.blendTrans.apply();
		}
		document.images.slide.src = logos[config][set][step];
		if (document.all) {
			slide.filters.blendTrans.play();
		}
		step = (step + 1) % logos[config][set].length;
		setTimeout("showLogos('" + config + "', " + set + ")", 4000);
	}
}
