function tableFormat(){
	$(".tableLink a").css('color','#F30688');
	$(".tableLink a").css('text-decoration','none');
	$(".tableLink a").hover(function() {
		$(this).css('text-decoration','underline');
		$(this).css('background','transparent');
	},function() {
		$(this).css('text-decoration','none');
		$(this).css('background','transparent');
	});
}
$(document).ready(function(){tableFormat();});