/*
                                              ****** Parameter Settings ******

          Customize the entire look of the scroll effect with the parameter options below.  Style parameters allow
          for the use of any valid CSS.

          Tips & Tricks: Parameter Settings

             1: This script block with your parameter settings and source code should appear directly before the
                documents closing </body> tag.  Placing this script tag and its contents at the location of your
                scrolling effect may cause errors.

             2: Adjust the "function vscrolldata0()" numeric id in the statement below to match the numeric id of
                the id='vscroll0' statement within the scroll structure and links section above.  The numbers must
                match for the scroll to work, multiple scrolls may be used on a single page by adding new sections
                with new id's.

             3: The container width and height may be specified below.  Any padding applied to the container using the
                this.container_padding parameter option is added to the overall width of the container.

             4: A separate scroll delay and jump size parameters are provided for the Mac OS.  This is to compensate for
                the slower DHTML animation capabilities of the platform.

             5: Individual items may be paused by setting a delay time on the LI tag itself, see the structure section
                above for additional information.

*/

list7 = true
function vscroll_data0()
{

	this.enable_visual_design_mode = false;

 	this.container_width = 520
	this.container_height = 147
	this.top_pause_offset = 0


   /*---------------------------------------------
   Timing and Animation Speed
   ---------------------------------------------*/

	this.initial_scroll_delay = 0

	this.animation_delay = 1
	this.animation_jump = 2

	this.animation_delay_mac = 50
	this.animation_jump_mac = 5


   /*---------------------------------------------
   Scroll Styles
   ---------------------------------------------*/

	this.container_styles = "background: none;"
	this.item_link_styles = ""
	this.item_link_hover_styles = ""
	this.item_styles = "font-size:13px;"


}