// JavaScript Document
//Melanie Myers 4.8.09

//This is for all  - calendars, tables, etc
//Automates even/odd row shading
//Works in conjunction with JQuery script at /scripts/jquery.js

	$(document).ready(function(){   
		$('table.striped tr:even').addClass('even');
		$('table.striped tr:odd').addClass('odd');
	});
