
	$(document).ready(function() {
		$('a[@rel="external"]').attr("target", "_blank");
		// 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');


	});