colors 					= new Array ();
colors["unternehmen"]	= "#ff0000";
colors["news"] 			= "#ff7500";
colors["referenz"] 		= "#abbe5c";
colors["publikationen"] = "#abbef7";
colors["kontakt"]		= "#646464";

global_section = "unternehmen";

function changeAppearence (section) 
{
	global_section = section;

	document.getElementById('logo_image').setAttribute("src","img/pr-marketing-400x66-" + section + ".png");  
	document.getElementById('img_' + section).setAttribute("src","img/" + section + "2.png");
 	document.getElementById('coloredLine').style.backgroundImage = "url(\"img/bar_" + section + ".gif\")";
 	document.getElementById('dateA').style.color = colors[section];
 	document.getElementById('dateB').style.color = colors[section];
}

function resetAppearence (section)
{
	global_section = "unternehmen";

	document.getElementById('logo_image').setAttribute("src","img/pr-marketing-400x66-unternehmen.png");
	document.getElementById('img_' + section).setAttribute("src","img/" + section + ".png");
	document.getElementById('coloredLine').style.backgroundImage = "url(\"img/bar_unternehmen.gif\")";
 	document.getElementById('dateA').style.color = colors["unternehmen"];
 	document.getElementById('dateB').style.color = colors["unternehmen"];
}