$(document).ready(function(){
	
	$('#DataTable tr:even td').css('background-color', '#eee');
	$('#DataTable tr:odd td').css('background-color', '#f7f7f7');	
	$('#DataTable tr:first-child td:nth-child(1)').css('width', '7%');
	$('#DataTable tr:first-child td:nth-child(2)').css('width', '16%');
	$('#DataTable tr:first-child td:nth-child(3)').css('width', '30%');
	$('#DataTable tr:first-child td:nth-child(4)').css('width', '7%');
	$('#DataTable tr:first-child td:nth-child(5)').css('width', '8%');
	$('#DataTable tr:first-child td:nth-child(6)').css('width', '8%');
	$('#DataTable tr:first-child td:nth-child(7)').css('width', '8%');
	$('#DataTable tr:first-child td:nth-child(8)').css('width', '8%');
	$('#DataTable tr:first-child td:nth-child(9)').css('width', '8%');
	
});
