function imageLoad()
{
	var img_name = new Array(6);
	var linkar=new Array(6);
	var l = img_name.length;
	var rnd_no = Math.floor(l*Math.random());
	linkar[0]="/HKGCB/APPS/portal/loadPage.do?path=prod/cat_land/banking.htm&tabId=banking";
	linkar[1]="/HKGCB/APPS/portal/loadPage.do?path=prod/cat_land/insurance.htm&tabId=insurance";
	linkar[2]="/HKGCB/APPS/portal/loadPage.do?path=prod/cat_land/credit_cards.htm&tabId=cards";
	linkar[3]="/HKGCB/APPS/portal/loadPage.do?path=prod/cat_land/loans_mortgages.htm&tabId=loans";
	linkar[4]="/HKGCB/APPS/portal/loadPage.do?path=prod/cat_land/investment.htm&tabId=investments";
	linkar[5]="/HKGCB/APPS/portal/loadPage.do?path=prod/sub_cat_land/citigold.htm&tabId=banking,citigold";
	
							
	img_name[0]="/global_images/en_images/home/home-banner1.gif";
	img_name[1]="/global_images/en_images/home/home-banner2.gif";
	
	img_name[2]="/global_images/en_images/home/home-banner3.gif";
	img_name[3]="/global_images/en_images/home/home-banner4.gif";
	img_name[4]="/global_images/en_images/home/home-banner5.gif";
	img_name[5]="/global_images/en_images/home/home-banner6.gif";
	
	var image_to_be_shown=new Array(6);
	var imageindex="";
	var i=0;
	while(i<=4)
	{
	var randno=Math.floor(Math.random()*10);
	if((randno<6)&&(imageindex.indexOf(randno)==-1)){imageindex+="$"+randno;image_to_be_shown[i]=randno;i++;}
	}
		document.getElementById("img1").src = img_name[image_to_be_shown[0]];
		document.getElementById("img1").title = "";
		document.getElementById("lnk1").href = linkar[image_to_be_shown[0]];
		document.getElementById("img2").src = img_name[image_to_be_shown[1]];
		document.getElementById("img2").title = "";
		document.getElementById("lnk2").href = linkar[image_to_be_shown[1]];
		document.getElementById("img3").src = img_name[image_to_be_shown[2]];
		document.getElementById("img3").title = "";
		document.getElementById("lnk3").href = linkar[image_to_be_shown[2]];
		document.getElementById("img4").src = img_name[image_to_be_shown[3]];
		document.getElementById("img4").title = "";
		document.getElementById("lnk4").href = linkar[image_to_be_shown[3]];
}



