
	$(document).ready(function() {

		// alternating background colors for testimonials
		$('p.quote').filter(':even').css('background-color', '#f1f1f1');

		// alternating table row colors
		$('table.list tr').filter(':even').css('background-color', '#f1f1f1');
		
		$('tr.expired').css('background-color', '#ff9999');


	});