
// stupid add this script to hide their stupid tracking div
var addthis_config = {
  data_use_flash: false
}


// random phrase generator 
// modified from http://javascript.internet.com/miscellaneous/simple-text-rotate.html and http://www.webdeveloper.com
// use \' for a single apostrophe

var says = new Array(
  'Make time to unwind.',
  'Keep going.',
  'Never settle.',
  'Find indoor peace.',
'');

function getRandy() {
  var r = Math.floor(Math.random()*(says.length-1));
  document.getElementById('randy').innerHTML = says[r];
}

window.onload = function(){  
   getRandy();  
} 

