jQuery(document).ready(function($) {

	$('tr:odd td').css('background-color','#f3f4f4');
	$('thead td').css('background-color','#2ba0da');
	
	$("#commentForm").validate({
	
		errorLabelContainer: $("li.error")
	
	});
});
