// JavaScript Document

/*
Use JQuery to add stripes to even table rows -- not using validator.

*/

$(document).ready
  $(function( ) {
  //Add striping to table
	$('table.striped tr:even').addClass('even');
	});


