

var indxsel=1;
var currentdate = new Date();
function indup(obj, num) {
  if (indxsel != num){ 
    obj.style.backgroundColor = "#EFEFEF";
  } else {
    obj.style.backgroundColor = "#EFEFEF";
  }
}
function inddown(obj, num) {
  if (indxsel != num){
    obj.style.backgroundColor= "#EFEFEF";
  } else       {
    obj.style.backgroundColor= "#ffffff";
  }
}


