var totalImages = 6; // Total images used

if(document.images){
	mFX = new Array(totalImages);
	for(i = 0; i < mFX.length; i++){
		mFX[i] = new Image();
		}
	mFX[0].src = "images/gallery-offers/1.jpg";
	mFX[1].src = "images/gallery-offers/2.jpg";
	mFX[2].src = "images/gallery-offers/3.jpg";
	mFX[3].src = "images/gallery-offers/4.jpg";
	mFX[4].src = "images/gallery-offers/5.jpg";
	mFX[5].src = "images/gallery-offers/6.jpg";
	}

function imgFX(img, num){
	if(document.images){
		document.images[img].src = mFX[num].src;
		}
	}