// -------------------------------- //
// Zebra stripes for tables         //
// -------------------------------- //
// Author: rachel@dollypower.com    //
// -------------------------------- //

// Document ready
jQuery(document).ready(function() {

	// Find tables and add "alt" to even rows
	jQuery("table tr:even").addClass("alt");
  
}); // End script
