<!--
var currimg=0;

// array to store all promo images
/* promoimg=new Array();
promourl=new Array();
promoimg[0]="AXA China Region - Personal Home.files/banner01.jpg";
promourl[0]=new Array("AXA","");
promoimg[1]="AXA China Region - Personal Home.files/banner02.jpg";
promourl[1]=new Array("EliteMPF",""); */

/*
for external URL please use the below as an example
promourl[0]=new Array("www.yoururl.com","_blank");

for no clickthru please use the below as an example
promourl[0]=new Array("#","");
*/

function preload(){

	document.promo.src=promoimg[currimg];
	setTimeout('rotate()', rotate_timeout);
}


function rotate(){
	if (document.images){
		if(document.promo.complete){

			currimg++;
			if (currimg==imgct){
				currimg=0;
			}
			document.promo.src=promoimg[currimg];
		}
		setTimeout('rotate()',rotate_timeout);
	}
}
function clickthru(){
	if (promourl[currimg][1]=="")
		document.location.href=promourl[currimg][0];
	else
		window.open(promourl[currimg][0]);
}
// -->
