// Get date
// Today's Date Array of month day and year names
dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
monthNames = new Array("January","February","March","April","May","June","July", "August","September","October","November","December");
now = new Date();
Year = now.getFullYear();
MM = now.getMonth();
DD = now.getDate();
DY = now.getDay();
Today = '<b>' + dayNames[DY] + ' - ' + monthNames[MM] + ' ' + DD + ', ' + Year + '</b><br>';

// Select a random Number
NumOfFiles = 35;
FileNum = Math.floor(Math.random() * NumOfFiles) + 1;
if (FileNum < 10) FileNum = '00' + FileNum;
if (FileNum > 9 && FileNum < 100) FileNum = '0' + FileNum;

// Inspirational Moment Frame
frameA = '<iframe src="quotes/quote_';
// frameB = DD;
frameB = FileNum;
frameC = '.html" name="quote" scrolling="no" width="460" height="79" align="center"></iframe>';
Inspiration = frameA + frameB + frameC;
