// Just put the different bits of text into the array separated by a comma.
// You can use HTML tags also. If you need to use quotes, use the single quote,
// ( ' ) or use the escape character ( \" ), both without parenthesis.
// You must use a comma to seperate each line of code for the image/text
// No comma needed for the last line of code for the image/text

textLines=new Array(

"<a href='http://www.ozfm.com/dp/temp.html' target=\"_blank\"><img border=0 alt='Dawn Patrol, Weekdays 5:30 - 10:00 am (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_dp.jpg' onmouseover=\"window.status='Dawn Patrol, Weekdays 5:30 - 10:00 am  (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<a href='http://www.at40.com/' target=\"_blank\"><img border=0 alt='AT 40, Sat 10 - 2 pm, Sun Noon - 4 pm (www.at40.com)' src='http://www.ozfm.com/banners/ozbanner_at40.jpg' onmouseover=\"window.status='AT 40, Sat 10 - 2 pm, Sun Noon - 4 pm (www.at40.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<a href='http://www.ozfm.com/support_our_troops/yellow_ribbon.htm' target=\"_blank\"><img border=0 alt='Support Our Troops Overseas - Join the OZ FM Yellow Ribbon Campaign (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_yellow_ribbon.jpg' onmouseover=\"window.status='Support Our Troops Overseas - Join the OZ FM Yellow Ribbon Campaign (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<img border=0 alt='OZ FM Top 20, Weekdays 3:30 - 5:30 pm' src='http://www.ozfm.com/banners/ozbanner_NLtop20.jpg' onmouseover=\"window.status='OZ FM Top 20, Weekdays 3:30 - 5:30 pm';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">",
"<img border=0 alt='Electric Lunch, Weekdays 12:30 - 1:30 pm' src='http://www.ozfm.com/banners/ozbanner_el.jpg' onmouseover=\"window.status='Electric Lunch, Weekdays 12:30 - 1:30 pm';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">",
// "<a href='http://www.ozfm.com/maillist.htm#contact_form' target=\"_blank\"><img border=0 alt='N R L, Mon - Fri @ 7 - 9 pm (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_nrl.jpg' onmouseover=\"window.status='N R L, Mon - Fri @ 7 - 9 pm (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<a href='http://www.ozfm.com/maillist.htm#contact_form' target=\"_blank\"><img border=0 alt='Top 10 @ 10, Mon - Sat @ 10 pm (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_top10.jpg' onmouseover=\"window.status='Top 10 @ 10, Mon - Sat @ 10 pm (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<a href='http://www.ozfm.com/support_our_troops/yellow_ribbon.htm' target=\"_blank\"><img border=0 alt='Support Our Troops Overseas - Join the OZ FM Yellow Ribbon Campaign (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_yellow_ribbon.jpg' onmouseover=\"window.status='Support Our Troops Overseas - Join the OZ FM Yellow Ribbon Campaign (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<img border=0 alt='AT 20, Sat 7 - 10 am, Sun 10 - 1 am' src='http://www.ozfm.com/banners/ozbanner_at20.jpg' onmouseover=\"window.status='AT 20, Sat 7 - 10 am, Sun 10 - 1 am';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">",
"<a href='http://www.ozfm.com/maillist.htm#contact_form' target=\"_blank\"><img border=0 alt='All Request Saturday, starts @ 2 pm (www.ozfm.com)' src='http://www.ozfm.com/banners/ozbanner_ars.jpg' onmouseover=\"window.status='All Request Saturday, starts @ 2 pm (www.ozfm.com)';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\"></a>",
"<img border=0 alt='Jigs and Reels, Sunday 6 am - Noon' src='http://www.ozfm.com/banners/ozbanner_jigsandreels.jpg' onmouseover=\"window.status='Jigs and Reels, Sunday 6 am - Noon';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">",
"<img border=0 alt='Twin Spin Sunday, Sunday 4 - 8 pm' src='http://www.ozfm.com/banners/ozbanner_tss.jpg' onmouseover=\"window.status='Twin Spin Sunday, Sunday 4 - 8 pm';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">",
"<img border=0 alt='New Age News, Weekdays 9 - 10 am' src='http://www.ozfm.com/banners/ozbanner_new_age_news.jpg' onmouseover=\"window.status='New Age News, Weekdays 9 - 10 am';return true\" onmouseout=\"window.status='';return true\" width=\"468\" height=\"60\">"

			);

// The Text Line to start on (The first line is line 0).
numOn=0;
// Set the delay time inbetween each change (in seconds, decimal values can be used).
delay=7;
// Set this variable to 0 to stop mouse overs from stopping 
// the text from changing.
stopOK=1;
change=1;
window.onload=start;
function start(){
  setTimeout("Change()",1);
}
function Change(){
// Check to see if the user has their mouse over the text.
 if(change==1){
// Make sure we are on a valid Line Number and if not, set it to
// the starting line.
  if(numOn>=textLines.length||numOn<0){numOn=0}
// Set the text inside the <div> to the specified line number.
  textChanger.innerHTML=textLines[numOn];
// Increase the line number by one to get the next string.
  numOn++;
 }
// Call this function again to write the string to the <div>.
  setTimeout("Change()",delay*1000);
}

/*\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\/¯\
\                                        /
/  =-=-=-=-=-= Text Changer =-=-=-=-=-=  \
\                                        /
/                                        \
\  Author:                               /
/     Nick Trevino                       \
\                                        /
/                                        \
\  Description:                          /
/     This code changes the text within  \
\     the <div> tag below. You can show  /
/     any number of lines, and it still  \
\     will show them all! It also stops  /
/     changing the text if the user has  \
\     their mouse over the text. If you  /
/     don't want mouse overs to stop it  \
\     from changing, then set stopOK to  /
/     0 instead of 1.                    \
\                                        /
/  Usage Tips:                           \
\     You can use this and the HTML tag  /
/     <img> to make it change different  \
\     images on a set timer! Or you can  /
/     also use it to change links using  \
\     the stopping feature so users can  /
/     click the links! See if there are  \
\     other ways you can use it.         /
/                                        \ 
\_/\_/\_/\_/\_/\_/\_/\_/\_/\_/\_/\_/\_/\*/