// JQUERY Table Zebra Stripe
$(document).ready(function() {
		
		$('table.formTable tr:nth-child(odd)').addClass('oddRow');
		$('table.formTable tr:nth-child(even)').addClass('evenRow');
});
