var zg_activated = false;

function showZG(zg) {
	if (!zg_activated) {
    $('#beam_sg' + curr_zg).hide();
    $('#beam' + curr_zg).css('width', '7px');
    $('#beam_sg' + zg).show();
    $('#beam' + zg).css('width', '39px');
		curr_zg = zg;
		if (zg == zg_active)
		  return;
	  if (zg != base_zg)
	    $('#zg_nav :nth-child(' + arr_zg[zg]['pos'] + ')').toggleClass('zg_na zg_' + arr_zg[zg]['pos'] + 'h');
    else
      $('#gesamtportal :first-child').toggleClass('gpInaktiv gpAktiv');
	}
}

function ZG_aus(zg) {
	if (zg == zg_active)
	  return;
	if (!zg_activated) {
	  if (zg != base_zg)
	    $('#zg_nav :nth-child(' + arr_zg[zg]['pos'] + ')').toggleClass('zg_na zg_' + arr_zg[zg]['pos'] + 'h');
    else
      $('#gesamtportal :first-child').toggleClass('gpInaktiv gpAktiv');
	}
}

