function getImage(loc, imageID)
{
	document.getElementById("selectedImage").src = loc + '/' + imageID + '.jpg';
}

var tempimgs = new Array();
var imgind = 0;

function preLoadImage(imgsrc) {
	tempimgs[imgind] = new Image();
	tempimgs[imgind++].src = imgsrc;
}
