/**
 * @version  1.00
 * @updated  2008/04/01
 */



if ($.browser.safari && $.browser.version < 500) {
	$(window).load(function () {
		stripe_table();
	});
}
else {
	$(document).ready(function () {
		stripe_table();
	});
}



function stripe_table() {
	$('table.stripe tbody tr:odd').each(function(){
		this.className = 'even';
	});
}