$(function(){
	$("table").each(function(){
		var _this = $(this);
		if (_this.is('.csTable')) {
			_this.find('tr:odd').css({background:'#eee'})
		}
	})
});