// Hammerhead News Feed

var messages = new Array();
var links    = new Array();

// Enter Messages in the messages array below 

messages[0] = "MLS News: Goalie stops shots, scores goal in Red Bulls' win";
messages[1] = "MLS News: Beckham to train with AC Milan";
messages[2] = "US National Team News: Trinidad and Tobago upsets U.S. in World Cup qualifier";
messages[3] = "International News: Spain, England, Dutch stay perfect in World Cup qualifying";
messages[4] = "Champions Crowned at 2008 US Youth Soccer National Championships";
messages[5] = "Coaching: Lessons from the National Youth License course";
messages[6] = "Soccer Clubs: 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://www.usatoday.com/sports/soccer/2008-10-18-1244379030_x.htm";
links[1] = "http://www.usatoday.com/sports/soccer/2008-10-19-2526277336_x.htm";
links[2] = "http://www.usatoday.com/sports/soccer/worldcup/2008-10-15-us_trin_N.htm";
links[3] = "http://www.usatoday.com/sports/soccer/worldcup/2008-10-15-worldcup-qual_N.htm";
links[4] = "http://championships.usyouthsoccer.org/news/Story.asp?story_id=3859";
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>');