var index = 1;

function setImage(no, imageSrc) {
	image = new Image();
	image.src = imageSrc;
  	window.document.images[no].src = image.src;
}


function hoverRow(id) {
	document.getElementById(id).style.backgroundColor = '#dddd99';
}

function unhoverRow(id) {
	document.getElementById(id).style.backgroundColor = 'transparent';
}
