
// --- START to display today's date - used on all pages in the logo

function printToday()  {
var today = new Date() //create date object
var month = today.getMonth()+1; //need to add 1 because jan = 0
var day = today.getDate();
var year = today.getFullYear();
document.write(month + "/" + day + "/" + year);
}

// ---------------------------------------------------------------

// ---------------------------------------------------------------
// --- START function to hide, then fade in the gig alert div
$(document).ready(function() {
  $('#gigalert').hide();
 });
 
 $(document).ready(function() {
  $('#gigalert').fadeIn(2000);
 });
 
 // --- END --------------------------------------------------------
 
 
 
// ---------------------------------------------------------------
// --- START function to change the color of rows in the songlist
 $(document).ready(function() {
  $('#songlist tr:odd').addClass('songlistodd');
 });
 
 
 // --- END --------------------------------------------------------

