// JavaScript Document
Event.observe(window, 'load', function() {
	
	// If a default table style exists, set the body class to 'onecol'
	if($$('table.default').length > 0) {
		$$('body').first().addClassName('onecol');
	}
 });