var tabImages = new Object();

tabImages['immobilien'] = new Image();
tabImages['immobilien'].src = contextPath + '/docroot/image/new/header/immobilien-auktionen.jpg';
tabImages['immobilien_active'] = new Image();
tabImages['immobilien_active'].src = contextPath + '/docroot/image/new/header/immobilien-auktionen-active.jpg';

tabImages['hausbau'] = new Image();
tabImages['hausbau'].src = contextPath + '/docroot/image/new/header/hausbau-neubau.jpg';
tabImages['hausbau_active'] = new Image();
tabImages['hausbau_active'].src = contextPath + '/docroot/image/new/header/hausbau-neubau-active.jpg';

tabImages['gutachten'] = new Image();
tabImages['gutachten'].src = contextPath + '/docroot/image/new/header/gutachten-immobilien.jpg';
tabImages['gutachten_active'] = new Image();
tabImages['gutachten_active'].src = contextPath + '/docroot/image/new/header/gutachten-immobilien-active.jpg';

tabImages['bauverzeichnis'] = new Image();
tabImages['bauverzeichnis'].src = contextPath + '/docroot/image/new/header/bau-verzeichnis.jpg';
tabImages['bauverzeichnis_active'] = new Image();
tabImages['bauverzeichnis_active'].src = contextPath + '/docroot/image/new/header/bau-verzeichnis-active.jpg';

tabImages['community'] = new Image();
tabImages['community'].src = contextPath + '/docroot/image/new/header/bau-community.jpg';
tabImages['community_active'] = new Image();
tabImages['community_active'].src = contextPath + '/docroot/image/new/header/bau-community-active.jpg';

function onOver(img, name) {
	if(imagePath == name) return;
	if(tabImages[name + '_active'])
		if(img && img.src)
			img.src = tabImages[name + '_active'].src;
}

function onOut(img, name) {
	if(imagePath == name) return;
	if(tabImages[name])
		if(img && img.src)
			img.src = tabImages[name].src;
}