var tickercontents = new Array()
var newscontents = new Array()
var tickdelay = 5000
var currentmessage = 0
var currentnews = 0
var imgdelay = 10000
var newsdelay = 5000
newscontents[0] = "Yahoo Buzz - now open to the rest of us
ITLnet Blog
8/19/2008 3:59:46 PM
";
newscontents[1] = "Posted BOK Podcast #2
Program Witch Pages
8/18/2008 9:12:41 AM
";
newscontents[2] = "My Thoughts on WWE SummerSlam PPV
Wrestling Fan
8/18/2008 8:59:15 AM
";
newscontents[3] = "Pandora may have to stop the music
Program Witch Pages
8/17/2008 10:18:46 PM
";
newscontents[4] = "Blog Oklahoma Podcast 2: Back to School
Blog Oklahoma
8/17/2008 6:01:07 PM
";
newscontents[5] = "Blog Oklahoma Podcast 2: Back to School
Blog Oklahoma Podcast
8/17/2008 5:51:00 PM
";
newscontents[6] = "Nice Day for August
Program Witch Pages
8/16/2008 10:56:03 PM
";
newscontents[7] = "The Realm of Earthworms: NASA Gets Down to the Nitty-Gritty
ITLnet Blog
8/15/2008 1:58:25 PM
";
newscontents[8] = "Oklahoma Foodies Group
ITLnet Blog
8/15/2008 8:42:31 AM
";
newscontents[9] = "NBCs WeatherPlus Widgets
Blog Oklahoma
8/14/2008 3:01:33 PM
";
newscontents[10] = "OKC team releases ticket information
ITLnet Blog
8/14/2008 1:50:34 PM
";
newscontents[11] = "Ex Custer Co. Sheriff Ordered To Trial
West OK Journal
8/14/2008 10:47:52 AM
";
newscontents[12] = "Political Conventions
West OK Journal
8/14/2008 9:23:21 AM
";
newscontents[13] = "Republican National Convention
ITLnet Blog
8/14/2008 8:54:09 AM
";
newscontents[14] = "Democratic National Convention
ITLnet Blog
8/14/2008 8:52:31 AM
";
newscontents[15] = "Drop.io Firefox Extension
ITLnet Blog
8/13/2008 4:48:42 PM
";
newscontents[16] = "New Member - Now or Never
Blog Oklahoma
8/13/2008 4:45:21 PM
";
newscontents[17] = "How to Live Within Your Budget
ITLnet Blog
8/13/2008 9:58:03 AM
";
newscontents[18] = "Disqus launches improved Wordpress plugin, now SEO-friendly
Blog Oklahoma
8/13/2008 9:26:03 AM
";
newscontents[19] = "Four Hidden WordPress Features
Blog Oklahoma
8/13/2008 8:57:57 AM
";
newscontents[20] = "Movable Type, Wordpress becoming social platforms
Blog Oklahoma
8/12/2008 1:27:30 PM
";
newscontents[21] = "New Member - Brooksider
Blog Oklahoma
8/12/2008 1:04:04 PM
";
newscontents[22] = "New Member - Obscure As We Are
Blog Oklahoma
8/12/2008 1:03:15 PM
";
newscontents[23] = "Oklahoma Museum Network
BlogOklahoma.us
8/12/2008 8:41:43 AM
";
newscontents[24] = "Removing Burned Popcorn Smell from a Microwave
ITLnet Blog
8/12/2008 8:17:00 AM
";
newscontents[25] = "The Top 100 Undiscovered Web Sites
ITLnet Blog
8/12/2008 8:14:16 AM
";
newscontents[26] = "New Member - Bloggin It From the Burbs
Blog Oklahoma
8/11/2008 4:17:02 PM
";
newscontents[27] = "Antimatter-Rocket Plan Fuels Hope for Star Trek Tech
Star Trek Fan
8/11/2008 10:55:00 AM
";
newscontents[28] = "Daystrom Institute Technical Library
Star Trek Fan
8/11/2008 10:52:14 AM
";
newscontents[29] = "YouTube - The Simpsons vs Star Trek
The Simpsons theme meets...
Star Trek Fan
8/11/2008 10:50:00 AM
";
newscontents[30] = "Star Trek + Nine Inch Nails = Closer
Star Trek Fan
8/11/2008 10:47:00 AM
";
newscontents[31] = "YouTube - Star Trek Remastered On DVD
The CBS television...
Star Trek Fan
8/11/2008 10:41:00 AM
";
newscontents[32] = "Oklahoma Podcasters Send in your Promos
Blog Oklahoma
8/11/2008 9:29:37 AM
";
newscontents[33] = "New Blog Oklahoma Podcast Up
Program Witch Pages
8/11/2008 9:17:21 AM
";
newscontents[34] = "School Days Begin
West OK Journal
8/11/2008 8:36:53 AM
";
newscontents[35] = "Blog Oklahoma Podcast 1: Start From Here
Blog Oklahoma Podcast
8/10/2008 5:11:00 PM
";
newscontents[36] = "Grant County Oklahoma
BlogOklahoma.us Forum
8/9/2008 1:03:15 AM
";
newscontents[37] = "YouTube Find - XXX vs AMW
Wrestling Fan
8/8/2008 9:39:01 AM
";
newscontents[38] = "08.08.08 Double Trouble Day
Program Witch Pages
8/8/2008 9:08:03 AM
";
newscontents[39] = "Elk City Without Natural Gas
West OK Journal
8/8/2008 7:58:13 AM
";
function news_ticker() {
document.getElementById('my_feeds').innerHTML = newscontents[currentnews]
if (currentnews==newscontents.length-1) {
currentnews=0;
}
else {
currentnews++;
}
setTimeout("news_ticker()",newsdelay)
}
news_ticker();