
<!-- Begin
var mfBanners = [
['<B>No.  You may not take away my rights.  I am still using them!</B> - <i>bumper sticker</i>'], 
['<B>In theory there is no difference between theory and practice. But in practice there is.</B>'],
['<B>Man\'s mind stretched to a new idea never goes back to its original dimensions.</B> - <i>Oliver Wendell Holmes</i>'], 
['<B>There is no excuse not to dream.</B>'],
['<B>Imagination is the only weapon in the war against reality.</B> - <i>Jules de Gautier</i>'], 
['<B>Always be curious.  For knowledge will not seek you.  You must seek it.</B>'],
['<B>It takes considerable knowledge just to realize the extent of your own ignorance.</B>'],
['<B>A smart person knows what to say.  A wise person knows when to say it.</B>'],
['<B>The quieter you become, the more you can hear.</B>'],
['<B>Nobody can make you feel inferior without your permission.</B> - <i>Eleanor Roosevelt</i>'],
['<B>God, Give me patience.  And give it to me now!</B> - <i>Chris</i>'],
['<B>Reality often astonishes theory.</B> - <i>Tom Magliozzi (CarTalk)</i>'],
['<B>The road uphill and the road downhill are one and the same.</B> - <i>Heraclitus, philosopher (Ca. 540-470 BCE)</i>'],
['<B>Those willing to give up a little liberty for a little security deserve neither security nor liberty.</B> - <i> Benjamin Franklin</i>'], 
['<B>You only live once.  But if you live it right, once is all you need.</B>'],
['<B>If you think there\'s a solution, you\'re a part of the problem.</B> - <i>George Carlin</i>'], 
['<B>This is like deja vu all over again.</B> - <i>Yogi Berra</i>'],
['<B>You got to be very careful if you don\'t know where you\'re going, because you might not get there.</B> - <i>Yogi Berra</i>'],
['<B>If you don\'t know where you are going, you will wind up somewhere else.</B> - <i>Yogi Berra</i>'],
['<B>If you come to a fork in the road, take it.</B> - <i>Yogi Berra</i>'],
['<B>By the time you realize what your father was telling you was true, your own kids are telling you you\'re wrong.</B>'],
['<B>It is nice to be important.  But it is more important to be nice.</B>'],
['<B>The secret of happy living is not to do what you like, but like what you do.</B>'],
['<B>Little decisions should be made with the head and big decisions with the heart.</B>'],
['<B>Kindness is a language the deaf can hear, the blind can see and the mute can speak.</B>'],
['<B>You can give without loving, but you cannot love without giving.</B>'],
['<B>Life is not a matter of holding good cards but playing a poor hand well.</B>'],
['<B>Truthful words are not always beautiful; beautiful words are not always truthful.</B>'],
['<B>There is a very fine line between \"hobby\" and \"mental illness\".</B>'],
['<B>He who has imagination without learning, has wings but no feet.</B>'],
['<B>Distance leads enchantment to the view.</B>'],
['<B>It is better to try to idealize the real, than to realize the ideal.</B>'],
['<B>They say that nothing lasts forever, except possibly Mondays.</B>'],
['<B>A person\'s character is his destiny.</B>'],
['<B>Second thoughts are often wiser than first impressions.</B>'],
['<B>Pray for what you want, but work for the things you need.</B>'],
['<B>To be loved, be lovable.</B>'],
['<B>Nature, time and patience are the three best physicians.</B>'],
['<B>Wit is the salt of conversation, not the food.</B>'],
['<B>None of the secrets of success will work unless you do.</B>'],
['<B>People who want to share their religious views with you almost never want you to share yours with them.</B>'],
['<B>No matter what happens, somebody will find a way to take it too seriously.</B>'],
['<B>Speak only well of people and you need never whisper.</B>'],
['<B>Love is the only medicine for a broken heart.</B>'],
['<B>Answer just what your heart prompts you.</B>'],
['<B>The best way to gain a friend is to be one.</B>'],
['<B>Often to do two things at once is to do neither.</B>'],
['<B>Procrastination is the thief of time.</B>'],
['<B>A friend to all is a friend to none.</B>'],
['<B>The shortest answer is doing.</B>'],
['<B>To talk without thinking is to shoot without aiming.</B>'],
['<B>Don\'t take life so seriously.  No one survives it anyway.</B>'],
['<B>Time is not measured by a watch, but by moments.</B>'],
['<B>Genius does what it must, and talent does what it can.</B>'],
['<B>Sometimes you get a brainstorm.  Sometimes you just get fog.</B>'],
['<B>The meaning of life is to give life meaning.</B>'],
['<B>Experience tells you what to do.  Confidence allows you to do it.</B>'],
['<B>Love is not Love, unless given away.</B>'],
['<B>The heart is wiser than the intellect.</B>'],
['<B>The days are long, but the years are short.</B>'],
['<B>He who stops being better, stops being good.</B>'],
['<B>A fool and his money are soon popular.</B>'],
['<B>Strength is the charm of a man.  Charm is the strength of a woman.</B>'],
['<B>Life is ten percent what happens to you and ninety percent how you respond to it.</B>'],
['<B>The badness of a movie is directly proportional to the number of helicopters in it.</B>'],
['<B>You are what you eat.  Choose wisely.</B>'],
['<B>Today is the first day of the rest of your life, don\'t mess it up!</B>'],
['<B><i><FONT color="aqua">End of messages.   Time to start over.</FONT></i></B>']
];
var mfIe = false;
if( document.all) {
mfIe = true;
}
var mfBannerIndex = 1;

var timerID = null;
var timerRunning = false;
var speed = 5000;

function pause(){   
if(timerRunning) clearInterval(timerID);
timerRunning = false;
}

function play(){   
pause();   
timerID = setInterval("mfBannerChange()",speed);
timerRunning = true;
}

function faster(){   
pause(); 
speed = speed /2;  
timerID = setInterval("mfBannerChange()",speed);
timerRunning = true;
}

function slower(){   
pause(); 
speed = speed *2;  
timerID = setInterval("mfBannerChange()",speed);
timerRunning = true;
}

function previous(){   
pause(); 
if(mfBannerIndex == 0){
   mfBannerIndex = mfBanners.length -2;
   }
else {
   if(mfBannerIndex == 1){
      mfBannerIndex = mfBanners.length -1;
      }
   else {
      mfBannerIndex = mfBannerIndex -2;
   }
}

mfBannerChange()
}

function next(){   
pause(); 
mfBannerChange()
}


function mfBannerChange() {
var htmlString = '<FONT FACE="Trebuchet MS, Arial, Helvetica, Geneva, sans-serif, Verdana, Lucida Sans" Size=-1><CENTER>' + mfBanners[mfBannerIndex] + '</CENTER></FONT>';

if(document.getElementById){ 
   document.getElementById('banner').innerHTML = htmlString; 
   }
else{ 
	if( mfIe) {
	document.all.banner.innerHTML = htmlString;
	}
	else {
	document.layers["banner"].document.open();
	document.layers["banner"].document.write( htmlString);
	document.layers["banner"].document.close();
	}
}
if(mfBannerIndex < mfBanners.length - 1)
mfBannerIndex++;
else
mfBannerIndex = 0;
}


//  End -->
