function swapImage(sName,sImage) {
	document.images[sName].src = sImage
}
function randomNumber(low,high){
	var n = Math.round(Math.random() * high) + low;
	return n;
}
