function imageUpdate(url, id) {
	var randValue = Math.random()*1000;
	document.getElementById(id).src = url+randValue;
}
