
// VOLLEYBALLSEEK.COM HEADLINES
//    Code and content copyright (c) 2002 VolleyballSeek Inc. All rights reserved.

// CREATE NEW HEADLINE RECORD
function hline ( h_title, h_url, h_post_date, h_category )
{
   this.h_title = h_title
   this.h_url = h_url
   this.h_post_date = h_post_date
   this.h_category = h_category
}

// MAKE ARRAY OF HEADLINES
headlines = new Array(
   

  
 
   
   
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "Tuesday Updates!", "http://www.volleyballseek.com/news.cfm?counter=4328", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "Kessy-Ross to Play Brazilians for Gold Medal", "http://www.volleyballseek.com/news.cfm?counter=4326", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "Mizuno Selected as Exclusive-Official Ankle Brace Provider", "http://www.volleyballseek.com/news.cfm?counter=4305", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "FIVB Announces Pools for '09 Boys' Youth Worlds", "http://www.volleyballseek.com/news.cfm?counter=4327", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "Fuerbringer- Jennings to Play for Gold in Poland", "http://www.volleyballseek.com/news.cfm?counter=4325", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "France to battle with Spain for topping the standings in Marseille", "http://www.volleyballseek.com/news.cfm?counter=4324", "2001-11-27", "Community" ),
				
				
				
		
	
   
   		
		
		
		
		
		
		
		
		
				
				
					new hline( "OFFICIAL USA VOLLEYBALL ITEMS!!", "http://www.volleyballseek.com/news.cfm?counter=4086", "2001-11-27", "Community" ),null
				
				
				
		
		

 
  
   
   


);

// WRITE HEADER
if ( typeof vbs_header == 'undefined' || vbs_header ) {
	document.write( '<b><i>VolleyballSeek</i> Today</b><br>' );
	document.write( '<small>the latest from <a href="http://www.volleyballseek.com/" target="_blank">' );
	if ( typeof vbs_linkcolor != 'undefined' )
		 { document.write( '<font color="' + vbs_linkcolor + '">volleyballseek.com</font>' ); }
	else { document.write( 'volleyballseek.com' ); }
	document.write( '</a><p></small>' );
}

// SET NUMBER OF LINKS
if ( typeof vbs_numheadlines == 'undefined' )
	{ vbs_numheadlines = 20; }

// LOOP THROUGH WRITING HEADLINES
for ( var $i = 0; $i < headlines.length - 1 && $i < vbs_numheadlines; $i++ ) {
	if ( typeof vbs_bullet == 'undefined' || vbs_bullet )
    	{ document.write( '&#149;&nbsp;' ); }
    document.write( '<a href="' + headlines[$i].h_url + '" target="_blank">' );
	if ( typeof vbs_linkcolor != 'undefined' )
    	{ document.write( '<font color="' + vbs_linkcolor + '">' ); }
    document.write( headlines[$i].h_title );
    if ( typeof vbs_linkcolor != 'undefined' )
    	{ document.write( '</font>' ); }
    document.writeln( "</a><br>" );

	if ( typeof vbs_date != 'undefined' && vbs_date ) {
		document.writeln( '&nbsp;&nbsp;&nbsp;<small>'
			+ headlines[$i].h_post_date
			+ ' (' + headlines[$i].h_category
			+ ')</small><br>' );
	}
}

// COPYRIGHT NOTICE
document.write('<small><p>&copy; 2002 VolleyballSeek Inc.</small>');

