$(document).ready(function() {
	$('.FormatTable').each(function () {
		$(this).find('tr:even').toggleClass('secondLine');
		$(this).find('tr:first').removeClass().toggleClass('headLine');
	});
});
