jQuery(document).ready(function(){

	// Add "firsttr" class to first table row.
	jQuery("tr:first-child").addClass("firsttr");
	
	// Wrap a div around the table for the bottom image
	jQuery("table").wrap('<div class="table-bg" />');
	
	// Add "alt" class to alternate table rows.
	jQuery("tr:odd").addClass("alt");
	
	// Add ff2 class to body if browser is FireFox 2
	if (jQuery.browser.mozilla && jQuery.browser.version < '1.9') {
	    jQuery("#wrapper").attr('class','ff2');
	    jQuery("#footer").attr('class','ff2');
	}
});
