$(document).ready(function() {
$('table.CTtablein:eq(1)').find('tr:gt(1)')
	.filter(':even').addClass('formEven').end()
	.find('td')
	.addClass('formBottomBorder').end() 
	.each(function(){
	$(this).find('td:eq(1)').addClass('formWidthFix');
	});
});