function jq() {
$("dd").addClass("def")
$("dt").click(function(e) {
var mybody = this;
while (mybody = mybody.nextSibling) {
if (mybody.className == "def") break;
};
if (!mybody) return;
$(mybody).toggle();
e.preventDefault();
});

$("#inhalt").find("a").each(function(i){
if(this.href.indexOf(window.location.hostname)==-1){
this.className="ext";this.title="externer Link";}
});}


}
$(document).ready(jq);
