// JavaScript Document : Unterhaltung

function switch_menu_top(n, pfad) {
	if(n == "news") {
		// HG
		document.getElementById("id_menu_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/unterhaltung/menu_top_news.gif")';
		document.getElementById("id_inhalt_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/unterhaltung/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/unterhaltung/menu_top_suche.gif")';
		document.getElementById("id_inhalt_top").style.backgroundImage = 'url("' + pfad + '/global/img/hg/unterhaltung/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 = "";
	}
}

/* Fotos von der Launch Party */
function openreswin(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}
