var phraseCount = 0;
phraseCount = 1;
var phrases = new Array(phraseCount);
phrases[0] = "<p>Learning objects are a new way of thinking about learning content</p><a href=\"authoringtool-learningobjectsintro-01.jsp\" class=\"learnMore\">Learn More</a>";
function didyouknow() {
   if (phraseCount > 0) {
      var pIndex = Math.floor(Math.random()*phraseCount);
      document.write(phrases[pIndex]);
   } else {
      document.write('No phrases found for didyouknow file.');
		document.getElementById('didyouknow-title').style.display='none';		document.getElementById('didyouknow-info').style.display='none';   }
}

