// --------- start of jQuery document.ready() ---------- //
  
$(document).ready(function() {

    //table
    $('div.content table tr:even').addClass('mark');
  
   //removing left border in the first LI in footer navigation
   $('menu li:first').css({border: "none", paddingLeft: "0", marginLeft: "0"});
   
   //some animations for bottom navigation
   $('menu li a:not(.active)').hover(function() {$(this).animate({paddingTop: "3px"}, 100);}, function() {$(this).animate({paddingTop: "0px"}, 100);});

});

// -------- end of jQuery document.ready() ---------- //