$(document).ready(function(){
						   
  /* add classes for even and odd rows in .table*/					   
  $(".table tr").filter(":even").addClass(" even"); 
  $(".table tr").filter(":odd").addClass(" odd");
  
  $(".table-style tr").filter(":even").addClass(" even"); 
  $(".table-style tr").filter(":odd").addClass(" odd");
  
  $(".table-style-min tr").filter(":even").addClass(" even"); 
  $(".table-style-min tr").filter(":odd").addClass(" odd");
  $(".table-style-min").css("width", "100%");
  /* /add classes for even and odd rows in .table */
  
});


