jQuery(function(){
	
	jQuery("table.alt-row-blue tr:even").addClass("td-blue");
	jQuery("table.first-column-blue tr td:nth-child(1)").addClass("td-blue");
	
	/* Global Changes when to table */
	jQuery("table.alt-row-blue, table.first-column-blue").addClass("table-blue");
	jQuery("table.alt-row-blue tr:first td,table.first-column-blue tr:first td").addClass("th-blue").removeClass("td-blue");
});

