$(document).ready(function(){
	$("#tab2 table tr").each(function(){
		$(this).children("td:gt(1)").css("text-align","center");
	});
	
	$("#tab4 table tr").each(function(){
		$(this).children("td:gt(0)").css("text-align","center");
	});
});

