/**
 * Change the content of an image
 * @param	string	The id of the image html element
 */
function changeImage(imageelementid,targetimage){
	document.getElementById(imageelementid).src = targetimage;
}
