$(document).ready(function(){
	// Randomize update prompt
  var descriptions = ["Motivation for dream-chasers to keep chasing", 
                       "Inspiring dreamers to action",
                       "Encouraging dream-chasers to take their first step",
                       "A swift kick in the ass for dream-chasers",
                       "A light in the dark for dream-chasers",
                       "A cheering section for dream-chasers",
                       "A helping hand for dream-chasers",
                       "A shoulder to stand on for dream-chasers",
                       "Nothing but love for dream-chasers",
                       "Better than caffeine for dream-chasers",
                       "A little pick-me-up for dream-chasers",
                       "Cashing reality checks for dream-chasers",
                       "Spark plugs for dream-chasers"]
  var descerVal = descriptions[Math.floor(Math.random()*11)];
  $("#description").html(descerVal);
  $("#description").show();
  
});
