﻿if(($.browser.msie) && ($.browser.version <= 7)){
	
} else {
	$(document).ready (function() {
		$('tr:odd').addClass('odd');
		$('tr:even').addClass('even');
		$('table').each(function(){
			$('th:first-child').addClass('leftRoundedC');
			$('th:last-child').addClass('rightRoundedC');
			});
	});
}
