// Open the file located in /webdocs/javascript
// Download the file, and open it in an editor
// Go to the end of the last quotation, add a comma after the ', and return once
// Tab once, add a ' and start typing, when done typing add another '
// Note: if you have a word like "don't", it must be written as don\'t or the code will break

function rotateEvery(sec)
{
  var Quotation=[
	'Welcome to The Dr. Jesse Walker Show',
	'Broadcasts are every Tues & Thurs from 7 - 8pm. EST. 347.857.1769</a>!',
	'Check back daily for new content!',
  ];
  var quote=Quotation[Math.round(Math.random()*(Quotation.length-1))];
  $('#rotaryText').fadeOut('slow',function(){
    $('#rotaryText').html(quote).fadeIn('slow',function(){
      setTimeout('rotateEvery('+sec+')',sec*1000);
    });
  });
}