var imagePath = "includes/templates/redwax/images/customiser/images/";
var MultiArray = [ 
	[""],//blank entry to spoof the key of 0, whichis done on all entries
	["", imagePath + "gender-male.png", imagePath + "gender-female.png"], 
	["", imagePath + "hands-right.png",imagePath + "hands-left.png"], 
	["", imagePath + "height-1.png", imagePath + "height-2.png", imagePath + "height-3.png", imagePath + "height-4.png", imagePath + "height-5.png"],
	["", imagePath + "hand-size-1.png", imagePath + "hand-size-2.png", imagePath + "hand-size-3.png", imagePath + "hand-size-4.png"],
	[""],//there are no images for number 5 so we must padd the array
	["", imagePath + "flight-low.png", imagePath + "flight-normal.png", imagePath + "flight-high.png"],
	["", imagePath + "flight-low.png", imagePath + "flight-normal.png", imagePath + "flight-high.png"],
	["", imagePath + "direction-slice.png", imagePath + "direction-hook.png", imagePath + "direction-straight.png"]
];

for (i=0; i < MultiArray.length; i++) {
	for (j=0; j < MultiArray[i].length; j++) {
	var preload = new Image();
	preload.src = MultiArray[i][j];
	}	
}

function swap(imgIndex,imgIndex2, imgTarget) {
	document[imgTarget].src = MultiArray[imgIndex][imgIndex2];
}

