// Hammerhead News Feed

var messages = new Array();
var links    = new Array();

// Enter Messages in the messages array below 

messages[0] = "Podcast: U.S. Soccer President Sunil Gulati Announces USA Bid for 2018 or 2022 World Cup";
messages[1] = "More MLS News: Five-a-side: What's /hot in MLS";
messages[2] = "US National Team News: U.S. Continues Domination of Mexico";
messages[3] = "FIFA Features: Who Had the Wackiest Hairstyle?";
messages[4] = "Interview with Tony DiCicco";
messages[5] = "Coaching: Lessons from the National Youth License course";
messages[6] = "Soccer Technology: Does Your Club Offer Online Registration? Click Here";
messages[7] = "Soccer TV Schedule: FOX Soccer Channel Scheduled Games"

// Enter links in the links array - if there is no link enter links[0] = ""

links[0] = "http://podcast.ussoccer.com/090202_gulati_20182022bid_call.MP3";
links[1] = "http://web.mlsnet.com/news/mls_news.jsp?ymd=20090213&content_id=217746&vkey=news_mls&fext=.jsp";
links[2] = "http://www.ussoccer.com/articles/viewArticle.jsp_12648448.html";
links[3] = "http://www.fifa.com/worldfootball/news/newsid=1022168.html#who+wackiest+hairstyle";
links[4] = "http://www.usyouthsoccer.org/news/story.asp?story_id=4005";
links[5] = "http://www.usyouthsoccer.org/Blog.asp?post_id=148";
links[6] = "http://www.hammerhead.net/clubs.html";
links[7] = "http://msn.foxsports.com/story/2646572"

document.write('<style type="text/css">');
document.write('.rsslink {font-size: 9px; font-family: Verdana, Arial, Helvetica, sans-serif; }');
document.write('.rssauthor {font-size: 9px; font-family: Verdana, Arial, Helvetica, sans-serif; }');
document.write('.rssdate {font-size: 4px; font-family: Verdana, Arial, Helvetica, sans-serif; }');
document.write('.rssbody {font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; }');
document.write('</style>');
document.write('<table width="149" border="0" cellpadding="0" cellspacing="0" bgcolor="#D9D9D9">');
document.write('<tr><img src="http://www.hhforms.com/RSS/newsheader888.jpg" width="149" height="25"></tr>');
document.write('<tr><td>');
document.write('<table align="center" width="93%" border="0" cellpadding="1" cellspacing="2" bgcolor="#D9D9D9">');
for (p=0;p<messages.length;p++){
document.write('<tr valign="top"><td><img border=0 width="5" height="5" hspace="2" vspace="4" src="http://www.hhforms.com/RSS/blackbuton.gif"></td>');
document.write('<td class="rssbody">');
if (links[p].length == 0){
   document.write(messages[p]);
}
else {
   document.write('<a href="' + links[p] + '" target=_blank>' + messages[p] + '</a>');
}
document.write('</td></tr>');

}
document.write('</table>');
document.write('</tr></td>');
document.write('</table>');