// Flash-Schriften
$(function () {
	$.sifr({path:'tools/jQuery/jquery.sifr/fonts'});
        //$('h1').sifr({font:'TradeGothic_Bold'});
        $('h1').sifr({font:'TradeGothic_Bold_v2'});
        $('h2').sifr({font:'TradeGothic_Bold_v2'});
        $('legend').sifr({font:'TradeGothic_Bold_v2'});
        //$('.mainnavi_portal a').sifr({font:'Frutiger_45'});
        
});


// Lightbox
$(function() {
     $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
  });


 
 
function showdot (link_id){
   document.getElementById("dot" + link_id).src="images/dot_activ.png";
   document.getElementById("link" + link_id).style.color="#C9E34E";
}


function hidedot (link_id){
   document.getElementById("dot" + link_id).src="images/dot.png";
   document.getElementById("link" + link_id).style.color="#ffffff";
}

function showlink (link_id){
   document.getElementById("link" + link_id).style.color="#C9E34E";
   document.getElementById("dot" + link_id).src="images/dot_activ.png";
}


function hidelink (link_id){
   document.getElementById("link" + link_id).style.color="#ffffff";
   document.getElementById("dot" + link_id).src="images/dot.png";
}

function checkForm() {
   var temp = document.getElementById("auswahl").value;
   if(temp == "waehlen" || temp == "endverbraucher"){
      document.getElementById("zusatz").style.display="none";  
   }
   else {
      document.getElementById("zusatz").style.display="block";
   }
   
}

