    function show_it(breakfeat){
      // hide intro text
    	document.getElementById('breakfeatintro').style.display = "none";
    	// hide all infos (<p class="breakfeat">bla</p>)
    	document.getElementById('podcasting').style.display = "none";
    	document.getElementById('graphicdesign').style.display = "none";
    	document.getElementById('webdesign').style.display = "none";
    	document.getElementById('standardscompliancy').style.display = "none";
    	document.getElementById('law').style.display = "none";
    	document.getElementById('searchenginemarketing').style.display = "none";
    	document.getElementById('onlinemedia').style.display = "none";
    	
      // show current infotext
    	document.getElementById(breakfeat).style.display = "inline";

    	// paint all <li> links black
    	document.getElementById('podcastinglink').style.fontWeight = "normal";
    	document.getElementById('graphicdesignlink').style.fontWeight = "normal";
    	document.getElementById('webdesignlink').style.fontWeight = "normal";
    	document.getElementById('standardscompliancylink').style.fontWeight = "normal";
//    	document.getElementById('lawlink').style.fontWeight = "normal";
//    	document.getElementById('searchenginemarketinglink').style.fontWeight = "normal";
 //   	document.getElementById('onlinemedialink').style.fontWeight = "normal";

    	// paint current <li> red
    	document.getElementById(breakfeat + "link").style.fontWeight = "bold";
    }
    
    function hidestuff() {
      document.getElementById('breakfeatintro').style.display = "inline";
      document.getElementById('breakfeatintronojs').style.display = "none";   
    }



