

/**********************************************************************************************

                               Type Text Items and Content

**********************************************************************************************/

/*  

        Note:  Each <li... tag below creates a new item, you may add as many as you wish.  Terminate each line with 
               a backslash '\'.

     Warning:  Double check that there are no extra white spaces after your terminating '\' backslashes, the effect will fail to
               load if there are extra spaces present.

*/




document.write('\
<ul id="typetext" style="display:none;">\
\
		<li><a href="http://www.wvarchitects.com">Blackwood Associates, Inc.</a></li>\
		<li><a href="http://www.labyrinth.net">Labyrinth Solutions, Inc.</a></li>\
		<li><a href="sample_link.html">AMEX</a></li>\
		<li><a href="sample_link.html">Aol</a></li>\
		<li><a href="sample_link.html">Boeing</a></li>\
		<li><a href="sample_link.html">Cisco</a></li>\
		<li><a href="sample_link.html">Compaq</a></li>\
		<li><a href="sample_link.html">Dell</a></li>\
		<li><a href="sample_link.html">Disney</a></li>\
		<li><a href="sample_link.html">Gateway</a></li>\
		<li><a href="sample_link.html">Gillette</a></li>\
		<li><a href="sample_link.html">Goodyear</a></li>\
		<li><a href="sample_link.html">Honeywell</a></li>\
		<li><a href="sample_link.html">Lucent</a></li>\
		<li><a href="sample_link.html">Microsoft</a></li>\
		<li><a href="sample_link.html">Nextel</a></li>\
		<li><a href="sample_link.html">Nike</a></li>\
		<li><a href="sample_link.html">Pepsi</a></li>\
		<li><a href="sample_link.html">Pfizer</a></li>\
		<li><a href="sample_link.html">Qwest</a></li>\
		<li><a href="sample_link.html">UPS</a></li>\
\
</ul>');











/**********************************************************************************************

                               Customizable Options and Styles

**********************************************************************************************/


function typetext_data()
{


    /*---------------------------------------------
    Optional RSS Feed (Populates Items from a feed.)
    ---------------------------------------------*/	

	this.rss_feed = "news.xml"


    /*---------------------------------------------
    Delay Times (In Milliseconds (1/1000 s)
    ---------------------------------------------*/


	this.initial_delay = 500		//Delay before starting the effect upon first load.

	this.message_delay = 2000		//Delay between messages.
	this.type_delay = 75			//Delay between typed characters.
	this.scroll_delay = 10			//Delay between each scroll animation frame.

	this.mouseoff_delay = 1000		//Delay before switching to the next message after moving the mouse out.





    /*---------------------------------------------
    Dimensions and Styles
    ---------------------------------------------*/
	

	this.container_width = 115;		//Measured in Pixels
	this.margins = "3,1,3,0";		//Top,Right,Bottom,Left - In Pixels



	this.container_styles =           "border-width:0px;			\
                                           border-color:#0066bb;		\
                                           border-style:none;			\
                                           background-color:transparent;	"
                                          
       
	this.item_styles =                "text-decoration:none;		\
                                           font-weight:normal;			\
                                           font-family:Arial;			\
                                           font-size:12px;			\
                                           color:#333333;			\
                                           text-align:left;			"
       
	
	this.link_styles =                "text-decoration:none;		\
                                           font-weight:normal;			\
                                           font-family:Arial;			\
                                           font-size:12px;			\
                                           color:#333333;			\
                                           text-align:center;			"
       

	this.link_hover_styles =          "color:#ff3300;			\
                                           text-decoration:underline;		"

}

