$(function(){
  $('tbody tr:nth-child(odd),li:nth-child(odd)').addClass('odd');
  $('tbody tr:nth-child(even),li:nth-child(even)').addClass('even');
  $('li:first-child').addClass('first_child');
  $('li:last-child').addClass('last_child');
  // HOVER CLASS
  $('li,input,tr').hover(
    function(){
      $(this).addClass('hover');
    },function(){
      $(this).removeClass('hover');
  });
  // BLANK WINDOW
  $('a._blank,a.content_change').click(function(){
    window.open(this.href);
    return false;
  });
});
