/* Added by Anne Breckbill 10/30/08 
* Adds odd/even/header classes to table rows for striping
* works with jquery_1.2.6.pack.js
* used in Public Radio Tuner stream listing on americanpublicmedia and other places.
*/

//Start row striping
rowStripe = function(){
	$('th').parent().addClass('headerR');
	$('tr:not(.headerR):even').addClass('evenR');
	$('tr:not(.headerR):odd').addClass('oddR');
};

// starting the script on page load
$(document).ready(function(){
	rowStripe();
});