/* This script is edited and prepared by
Created by: Duday Daquilanea */

window.onload = colorRows;
function colorRows() {
  var myTR = document.getElementsByTagName('tr');
  for (var i=0;i<myTR.length;i++) {
    if (i%2) {
      myTR[i].style.background = '#eee'
			}
		else {
		  myTR[i].style.background = '#fff';
		}
  }
}

function movein(which,html){
  which.style.background='#e8c9e4'
  }