// Welcome to your jquery.base file ... place awesome jquery stuff here to help spruce up / fix / whatever your site. A link to this file has already been placed in each masterpage

jQuery(document).ready(function() {
	jQuery('td#maintopleft, td#mainbotleft, td#mainleft , td#maintopright, td#mainbotright, td#mainright, td.base_col').wrapInner('<div class="contentarea"/>');
	jQuery('td > .contentarea > table:has(td.base_col)').each( function() {
		var parentWidth = jQuery(this).parent().width();
		jQuery(this).addClass('catable').width(parentWidth);
	});
});
