// JavaScript Document
/////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/*



                                              ****** 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.

*/




function vscroll_data0()
{

	
	this.container_width = 400
	this.container_height = 270
	this.top_pause_offset = 10



    /*---------------------------------------------
    Optional RSS Feed (Populates Items from a feed.)
    ---------------------------------------------*/	

	this.rss_feed = "sodr.xml"
	this.rss_delay = 4;				//delay time for each rss message

  

   /*---------------------------------------------
   Timing and Animation Speed
   ---------------------------------------------*/

	this.initial_scroll_delay = 0

	this.animation_delay = 20
	this.animation_jump = 2

	this.animation_delay_mac = 100
	this.animation_jump_mac = 10


   /*---------------------------------------------
   Scroll Styles
   ---------------------------------------------*/

	this.container_styles = "background-color:#35312f; background-image:; border-style:solid; border-color:#35312f; border-width:1px; padding-right:10px; padding-left:10px; "
	this.item_link_styles = "margin-bottom:0px; background-color:; background-image:; color:#FFFFFF; text-align:; font-family:Arial; font-size:13px; font-weight:; text-decoration:none; border-style:none; border-color:; border-width:0px; padding-top:; padding-right:; padding-bottom:; padding-left:; "
	this.item_link_hover_styles = "background-color:; background-image:; color:#FFFFFF; text-align:; font-family:Arial; font-size:; font-weight:; text-decoration:underline; "
	this.item_styles = "margin-bottom:15px; background-color:; background-image:; color:#FFFFFF; text-align:; font-family:Arial; font-size:13px; font-weight:; text-decoration:none; "




}