// JavaScript Document
<!--
var normalLink ="http://www.novinki.de/index.html";
var normalPicSrc = "grafiken/transparent_250x80.gif";
var competitionLink ="javascript:FensterOeffnen('html/termine/flyer_wettbewerb_rezension.pdf')";
var commpetitionPicSrc ="grafiken/nov_competition_stamp.jpg";



 function switchLink()
  {
	 
  if (document.getElementById("myTransArea").href  == normalLink)
	 {
	 // alert(document.getElementById("myTransArea").href);
	  document.getElementById("myTransArea").href =competitionLink;  
	  document.getElementById("transparent_250x80").src=commpetitionPicSrc;
	  // document.getElementById("navBackground").style.backgroundImage = "url('/grafiken/nov_head_n.jpg')"; -- doesn't work
	 // document.getElementById("navBackground").style.visibility="show";
  	}
  	else 
 	{
	document.getElementById("myTransArea").href=normalLink;
	document.getElementById("transparent_250x80").src=normalPicSrc;
	//document.getElementById("navBackground").style.backgroundImage = "url('http://www.novinki.de.de/grafiken/nov_head_n.jpg')"; 
	}
 
  window.setTimeout("switchLink()",4000);   
     
  }





 


//-->


