// Stoakely javascript

function showDescription(text){
  document.getElementById('information').innerHTML = text;
}

function clearDescription(){
  document.getElementById('information').innerHTML = '';
}

