function selectPage(w) {
 $("span#info_title").text( $("div#__info_title_" + w).text() );
 $("span#info_content").html( $("div#__info_content_" +  w).html() );
 // Infolink:
 if(w == "portal") 
  il="<a href=\"" + $("div#__info_url_portal").html() + "\">mehr Informationen hier...</a>";
 else
  il="<a href=\"" + $("div#__info_url_"+w).html() + "\">direkt zu " + $("div#__info_title_"+w).text() +"...</a>";
  
 $("#info_link").html(il);
}

$("document").ready(function() { selectPage("portal"); });