function changeImage(id, url){
	if(document.getElementById){
		target = document.getElementById( id );
		target.src = url;
	}
}
