function user_branchOffices_init ($w,$h,$site,$active) {
	if ($active != '') $_map_infix = $site + '_' + $active + '_';
	else $_map_infix = '';
	
	map_default = new Image ($w,$h);
	map_default.src = 'fileadmin/images/res_branchOffices/map' + (($active != '') ? ('_' + $site + '_' + $active) : '') + '.png';
	map_eu = new Image ($w,$h);
	map_eu.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'eu.png';
	map_me = new Image ($w,$h);
	map_me.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'me.png';
	map_as = new Image ($w,$h);
	map_as.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'as.png';
	map_na = new Image ($w,$h);
	map_na.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'na.png';
	map_sa = new Image ($w,$h);
	map_sa.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'sa.png';
	map_af = new Image ($w,$h);
	map_af.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'af.png';
	map_au = new Image ($w,$h);
	map_au.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + 'au.png';
	
	document.map_image.src = map_default.src;
}

function user_branchOffices_rollOver($region) {
	document.map_image.src = 'fileadmin/images/res_branchOffices/map_' + $_map_infix + $region + '.png';
	return true;
}

function user_branchOffices_rollOut() {
	document.map_image.src = map_default.src;
	return true;
}

