// JavaScript Document

function tab(inhaltnummer,imgId) {
	if(document.getElementById(inhaltnummer).className == 'tabinvisible') {
		document.getElementById(inhaltnummer).className = 'tabvisible';
	  document.getElementById(imgId).src = 'http://images.gadmin.ch/393078/144';
  } else {
  	document.getElementById(inhaltnummer).className = 'tabinvisible';
	  document.getElementById(imgId).src = 'http://images.gadmin.ch/393724/144';
  };
}

