	function vscroll_data0()
	{
		/*Note:  This implementation uses a gradient div to achieve the fade effect.  This div will cover
	                 the up down button while in design view.  To manipulate the effect in design view use the
	                 click and drag the message itself.*/

		this.enable_visual_design_mode = false;
	 	this.container_width = 145
		this.container_height = 120
		this.top_pause_offset = 10

	    /*---------------------------------------------
	    Timing and Animation Speed
	    ---------------------------------------------*/

		this.initial_scroll_delay = 0			//measured in seconds

		this.animation_delay = 20			//measured in milliseconds (1/1000)
		this.animation_jump = 2				//measured in pixels, must be > 1

		this.animation_delay_mac = 50			//measured in milliseconds (1/1000)
		this.animation_jump_mac = 8			//measured in pixels, must be > 1

	    /*---------------------------------------------
	    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.container_styles = "";
		this.item_styles = "padding-left:10px;color:#333333; font-weight:normal; text-decoration:none; font-family:tahoma,verdana,arial,times new roman; font-size:11px; line-height:14px; border-style:none;border-width:0px;";
		this.item_link_styles = "color:#333333; font-weight:normal; text-decoration:none;  font-family:tahoma,verdana,arial,times new roman; font-size:13px; border-style:none;border-width:0px;";
		this.item_link_hover_styles = "color:#000000; font-weight:normal; text-decoration:none;";
	}