A couple of problems I see on your page. Firstly, somewhere midway in your page's source, you have:
Code:
<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAUgFqsP3res7_yEJpQY3ErBRzKEuHzEGVY-KO6DfEedXmegtBaRQ9Ke_2tX0aaE52j8uFM2zgPnLxEg"></script>
<script type="text/javascript" src="http://www.coonvalleytelco.com/script/gfeedfetcher2.js"></script>
<script type="text/javascript" src="http://www.coonvalleytelco.com/script/gajaxticker.js">
/***********************************************
* gAjax RSS Ticker- (c) Dynamic Drive (www.dynamicdrive.com)
* Requires "gfeedfetcher.js" class
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
</script>
That should be removed. This code is already added to the HEAD section of your page, and should never be duplicated again.
Secondly, for each instance of the gAjax Feed, the variable name should be unique. In your second instance, you have:
Code:
<script type="text/javascript">
var newsfeed=new gfeedfetcher2("example3", "example3class", "_new")
newsfeed.addFeed("Iowa News", "http://rss.cnn.com/rss/cnn_world.rss") //Specify "label" plus URL to RSS feed
newsfeed.displayoptions("snippet") //show the specified additional fields
newsfeed.setentrycontainer("p") //Display each entry as a paragraph
newsfeed.filterfeed(2, "date") //Show 8 entries, sort by date
newsfeed.init() //Always call this last
</script>
"newsfeed" in this case needs to be changed to a different variable name, as it's already used in your first instance above it.
Bookmarks