;(function($){
  
  // Run when DOM is ready
  $(document).ready(function(){
    initAlternateLines();
  });
  
  // Run when JS is loaded
  
  function initAlternateLines(){
	  var tables = $('.table');
	  if(tables.length == 0) return;
	  $('tr:odd').css('background-color','#edede0');
  }
  
  
})(jQuery);
