function v(i){
 var c = "c"+i;
 var a = "a"+i;
 document.getElementById(c).style.backgroundColor='#96965A';
}
function f(i) {
 var c = "c"+i;
 var a = "a"+i;
 if(top.cur.c==i){
  document.getElementById(c).style.backgroundColor='#FFFF00';
  document.getElementById(a).style.color='black';
 }else{
  document.getElementById(c).style.backgroundColor='#64C882';
 }
}
function c(i) {
 var c = "c"+i;
 var a = "a"+i;
 if(top.cur.c!=-1){
  var oc = "c"+top.cur.c;
  var oa = "a"+top.cur.c;
  document.getElementById(oc).style.backgroundColor='#64C882';
  document.getElementById(oa).style.color='white';
  top.cur.t=-1;
 }
 top.frames.t.document.location=document.getElementById(a).href;
 top.cur.c=i;
 document.getElementById(c).style.backgroundColor='#FFFF00';
 document.getElementById(a).style.color='black';
}

