// JavaScript Document : Bibliothek

function switch_menu_top(n, pfad) {
	if(n == "news") {
		// HG
		document.getElementById("id_menu_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/bibliothek/menu_top_news.gif")';
		document.getElementById("id_inhalt_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/bibliothek/news.gif")';
		// Div visibility
		document.getElementById("id_sucheformular").style.visibility = "hidden";
		document.getElementById("id_news").style.visibility = "visible";

		// Link
		document.getElementById("id_link_suche").style.color = "";
		document.getElementById("id_link_news").style.color = "#FFF";
	}
	else if(n == "suchen") {
		// HG
		document.getElementById("id_menu_top").style.backgroundImage = 'url("' + pfad +'/global/img/hg/bibliothek/menu_top_suche.gif")';
		document.getElementById("id_inhalt_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/bibliothek/suche.gif")';
		// Div visibility
		document.getElementById("id_sucheformular").style.visibility = "visible";
		document.getElementById("id_news").style.visibility = "hidden";

		// Link
		document.getElementById("id_link_suche").style.color = "#FFF";
		document.getElementById("id_link_news").style.color = "";
	}
}
