function preloader(imgArray) {
	for (i=0;i<imgArray.length;i++) {
		tempImage = new Image();
		tempImage.src = "/images/common/" + imgArray[i];
	}
}