//*****************************************
//       Fade Script Version 3.1
//*****************************************

function settitle() {
var a = "You are now entering the Web site of Capital City Wings ";
var b = "An organization for GoldWing motorcycle riders ";
var c = "For a list of rides and events please refer to the calendar page ";
var d = "Enjoy your visit to our website. ";
var t = new Date();
    s = t.getSeconds();
 if (s == 10) {
  document.title = a;}
      else if (s == 20) {
 document.title = b;}
      else if (s == 30) {
 document.title = c;}
      else if (s == 40) {
 document.title = d;} 
      else if (s == 50) {
 document.title = a;}
      else if (s == 60) {
 document.title = b;}
      else if (s == 70) {
 document.title = d;}
      else if (s == 00) {
 document.title = c;}
 setTimeout("settitle()", 1000);
 }

