// use this array to load functions in the body tag, see /shared.js/load_functions() for details
//var loadfunctions = new Array('function_name_no_parenthesis');

var loadfunctions = new Array('change_id');

function change_id() {
	if (document.getElementById('pagebox2_b') != null) {
		document.getElementById('pagebox2_b').id = 'pagebox2_c';
		}
	}

