/*
 * module_table.js
 * 
 * For styling the table module. See comments below.
 */


jQuery(document).ready(function(){
	// add class first to first tr
	jQuery('.priceTable tr:first-child').addClass('first');
	
	// add class left to first td or ths
	jQuery('.priceTable tr').each(function() {
		jQuery('td:first-child, th:first-child', this).addClass('left');
	});
	
	// add class right to last tds
	jQuery('.priceTable tr').each(function() {
		jQuery('td:last-child, th:last-child', this).addClass('right');
	});
	
});
