// JavaScript Document
$(document).ready( function() { 
		
	$('table tr th:first-child').addClass('firstCol');
	$('table tr th:last-child').addClass('lastCol');
	$('table tr td:first-child').addClass('firstCol');
	$('table tr td:last-child').addClass('lastCol');
	
	$('table tr:first-child').addClass('firstRow');
	$('table tr:last-child').addClass('lastRow');
	
	$('table').attr('cellpadding', '10');
	$('table').attr('cellspacing', '0');
	$('table').attr('border', '0');
	
	$('table tr:not([th])even').addClass('alt');
	
});