include_js('/js/lib/class.SpecsTable.js');

/**
 * Onload event handler
 */
function handle_onload() {
	// activate the specs tables
	if ($('specs')) {
		var s = new SpecsTableController('specs');
	}
}

// attach events
Event.observe(window, 'load', handle_onload);
