/**
 * table row alternating colors - applies the alt class to every other row
 * since ie does not understand odd/even css selectors
 * the css is in style.css (.conTable .alt)
 * 
 * Compatible with IE / FF
 */
$(document).ready(function(){
	// alternate row colors
	$('.conTable tbody tr:even').livequery(function(){
		$(this).addClass("alt");
		$(this).removeClass("odd");
	});
	$('.conTable tbody tr:odd').livequery(function(){
		$(this).addClass("odd");
		$(this).removeClass("even");
	});
	// programatically remove right border on the last td of every row 
	$('.conTable tr td:last-child').livequery(function(){
		$(this).css("border-right", "none");
	});
});
