// JavaScript Document

function hscrolldata0()
{

	node7 = true
   
    /*---------------------------------------------
    Scroll Dimensions (Note: Does not include container padding)
    ---------------------------------------------*/

	this.container_width = 497
	this.container_height = 21


   /*---------------------------------------------
    Timing and Animation Speed
    ---------------------------------------------*/


	this.initial_scroll_delay = 0			//measured in seconds

	this.animation_delay = 15			//measured in milliseconds (1/1000)
	this.animation_jump = 1				//measured in pixels, must be > 1

	this.animation_delay_mac = 20			//measured in milliseconds (1/1000)
	this.animation_jump_mac = 3			//measured in pixels, must be > 1


    /*---------------------------------------------
    Scroll Container Styles and Padding
    ---------------------------------------------*/


	this.container_padding = "5,0,0,0"
	this.container_styles = "text-align:center;";



    /*---------------------------------------------
    Item Styles and Padding
    ---------------------------------------------*/

	/* Note: this.Item_styles apply to all standard content in the scroll, while this.item_link_styles apply to content
                 within hyperlink tags only.  */

	this.message_gap = 200;

	this.item_styles = "color: #4f5559;	font-family: Arial, Helvetica, sans-serif;	font-size:12px;	font-weight:bold; text-decoration:none;";
	this.item_link_styles = "color: #4f5559;	font-family: Arial, Helvetica, sans-serif;	font-size:12px;	font-weight:bold; text-decoration:none;";
	this.item_link_hover_styles = "color: #4f5559;	font-family: Arial, Helvetica, sans-serif;	font-size:12px;	font-weight:bold; text-decoration:underline;";

}