/**
* Add even/odd CSS style for each DIV#comments LI with the given CSS
*/
function addOddEvenStyle(){
  $$("DIV#comments OL LI").each(function(elm,idx){
      if(idx % 2 == 0){
        elm.addClassName("odd");
      }
      else {
        elm.addClassName("even");
      }
  });
}
/**
* Show edit comment form
*/
function showEditComment(){
   document.getElementById('commentEdit').style.display = "inline";
   // Effect.Appear('commentEdit',{duration: 2.0});
    return false;
}

function init(){
   addOddEvenStyle();
}

window.onload = init;
