/**********************************************************************************************

                               Customizable Options and Styles

**********************************************************************************************/

node7 = true /* unlock code */

function typetext_data()
{


    /*---------------------------------------------
    Delay Times (In Milliseconds (1/1000 s)
    ---------------------------------------------*/


	this.initial_delay = 500		//Delay before starting the effect upon first load.

	this.message_delay = 6000		//Delay between messages.
	this.type_delay = 20			//Delay between typed characters.
	this.scroll_delay = 5			//Delay between each scroll animation frame.

	this.mouseoff_delay = 2000		//Delay before switching to the next message after moving the mouse out.





    /*---------------------------------------------
    Dimensions and Styles
    ---------------------------------------------*/
	

	this.container_width = 600;		//Measured in Pixels
	this.margins = "3,1,6,5";		//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:bold;			\
                                           font-family:Verdana;			\
                                           font-size:15px;			\
                                           color:#ffffff;			\
                                           text-align:left;			"
       
	
	this.link_styles =                "text-decoration:none;		\
                                           font-weight:bold;			\
                                           font-family:Verdana;			\
                                           font-size:15px;			\
                                           color:#ffffff;			\
                                           text-align:center;			"
       

	this.link_hover_styles =          "color:#ffffff;			\
                                           text-decoration:underline;		"

}


