$(document).ready(function() {
    $(".box").jFade({
      trigger: 'mouseover',
  		property: 'background',
  		start: 'efefef',
  		end: 'dddddd',
  		steps: 25,
  		duration: 20
  	}).jFade({
      trigger: 'mouseout',
      property: 'background',
      start: 'dddddd',
      end: 'efefef',
      steps: 25,
      duration: 20
    });
    
    $('table.projects tr:odd').addClass('odd');
});