function preloadTopImages() {
	if (document.images) {
		for(var i=0; i<preloadTopImages.arguments.length; i++) {
				preload[i] = new Image;
				preload[i].src = preloadTopImages.arguments[i];
		}
	}
}


function changePic() {

var imglist = new Array(
'spring_01.jpg',
'spring_02.jpg',
'spring_03.jpg');

if(document.getElementById) {
	var thePicture=document.getElementById("fp_image_content");
	var picPath="/mediacache/Bank2006/img/reload/"+imglist[rnd(imglist.length)];
	thePicture.style.background="url("+picPath+")";
	}
}

function rnd(n) {
	return Math.floor(Math.random()*n);
}