$(document).ready(function(){
/* rows color interchange */               
  $(".table tr").filter(":odd").addClass(" odd");
  $(".table tr").filter(":even").addClass(" even");
/* /rows color interchange */
/* last-child emulation for all */
  $("div.events li:last-child").addClass(" last-child");
/* /last-child emulation for all */
});
