/***********************************************
* author: BEN NEMEC
*         Bnemec@uwyo.edu
* Creation date: 4/24/2006 
***********************************************/
function headline()
{
	var headline = new Array();

	/******************************************************************
	* 			FONT INFORMATION			  *
	* List the fonts you want the information to be displayed in	  *	
	* Remember, some computers may not have the font you want	  *
	* The first font in the list in the priority, if the user	  *
	* has that font, the computer will use it, if not, it will	  *
	* use the next in the line until it has one on its computer	  *
	******************************************************************/

	var font = new String("BankGothic Lt BT, Century Gothic, Copperplate Gothic Light, arial");
	var size=4;
	

	/***********************************************
	* 		HEADLINE INFORMATION	       *
	* Headlines will appear on the top of the main *
	* page on the website. To edit them, change the*
	* text in the quotes, to add up to  3 lines of *
	* information				       *
	***********************************************/

	headline[0]="ASCE Steel Bridge Team";
	headline[1]="Won First Place at Regionals";
	headline[2]="Going to Nationals in CA.";

	/**************************************************************************************************
	* 		DO NOT EDIT ANYTHING BELOW THIS LINE, THIS IS THE RUNNING CODE			  *
	**************************************************************************************************/

	for(var x=0; x<=2; x++)
	{
		document.write("<div align='center'>");
		document.write("<font face='"+font+"' size='"+size+"'>");
		document.write(headline[x]+"<br>");
		document.write("</font></div>");

				
	}
}


