var n = 0;
timedelay = 5;  // Seconds between image change
timedelay *= 1000;

windowprops = ""; // customize the popup window here

var imgs = new Array();
imgs[0] = "/images/logos/logo.Abingworth.175.gif";
imgs[1] = "/images/logos/logo.Deloitte.175.gif";
imgs[2] = "/images/logos/logo.UKTI.175.gif";
imgs[3] = "/images/logos/logo.RustonPoole.175.gif";
imgs[4] = "/images/logos/logo.Hewitsons.175.gif";
imgs[5] = "/images/logos/logo.Reddie.175.gif";
imgs[6] = "/images/logos/logo.Merck.175.gif";

var page = new Array();
page[0] = "http://www.abingworth.com/";
page[1] = "http://www.deloitte.com/";
page[2] = "https://www.uktradeinvest.gov.uk/";
page[3] = "http://www.rustonpoole.com/";
page[4] = "http://www.hewitsons.com/";
page[5] = "http://www.reddie.co.uk/";
page[6] = "http://www.msd-uk.co.uk/";

var alt = new Array();
alt[0] = "Abingworth - investors in life sciences";
alt[1] = "Deloitte";
alt[2] = "UK Trade & Investment";
alt[3] = "Ruston Poole - recruiting excellence worldwide";
alt[4] = "Hewitsons Solicitors";
alt[5] = "Reddie & Grose";
alt[6] = "Merck Sharp & Dohme";

n = Math.floor(Math.random() * imgs.length);
function rotate() {
	//document.picform.slideshow.src = imgs[n];
	MM_changeProp('SponsorLogo','','src',imgs[n],'IMG');
	MM_changeProp('SponsorLogo','','alt',alt[n],'IMG');
	MM_changeProp('SponsorLink','','href',page[n],'A');
	(n == (imgs.length - 1)) ? n = 0 : n++;
	window.setTimeout("rotate()", timedelay);
}
