function cdd_menu996645(){//////////////////////////Start Menu Data/////////////////////////////////


/*------------------------Settings File - Documentation--------------------------------------------------



     CHANGING PARMAETER VALUES:

     To start customizing your menu try changing some parameter values below.  First start by changing
     something simple like the item text color (this setting is found under the 'Main Menu Settings' section). 

     change the value from...   this.menu_items_text_color_main = "#666666"
     to...  this.menu_items_text_color_main = "#ff0000"

     After changing the value, save this document, then open 'start_here.html' in your browser, the main menu
     text in the sample menu should have changed from gray to red.

     This basic technique for may be applied to any setting to adjust the look of the menu to suite your needs.



     ADDING PARAMETERS:

     The menu works on a simple hierarchal parameter naming scheme.  The building block for the menu is the
     'item' parameter.  To add menu items, append the next logical index number to the parameter (i.e. 0_1)
     see the 'Sub Menu Settings' section for a working view of how the indexing should look.  (Extending the
     indexes with the '_' character adds a new child sub menu, this can be done indefinitely, i.e. 1_4_2_0...)

     Any style type setting (colors, fonts, dividers, etc.) may be specifically applied to any menu item or
     group of menu items by appending the index of the item to the settings parameter name.  The following
     will set the second sub menu items background color to blue (if added outside of these comments);

     this.item_background_color0_1 = "#0000ff";

     **Note: All indexing starts at 0 (0 = 1st item, 1 = second item, etc...).



     TARGETING PARAMETERS:

     The area of the menu to which a parameter name targets may be altered by adding optional target commands
     before and after the base parameter name.  This may be used in combination with index values for more
     specific targeting.

     Prefix Options: item_        -   Setting applies to menu item(s)
                     menu_        -   Setting applies to menu containers(s)
                     menu_items_  -   Setting applies to all items in a container
                     divider_     -   Setting applies to menu divider(s)

     Suffix Options: _roll        -   Setting will apply to the rollover state (available with items only)

     These basic rules may be applied to any parameter to customize every possible aspect of the menu. The
     following example will set the rollover color of sub menu 0's second item to green.

     this.item_background_color_roll0_1 = "#00ff00";

     ***Note: For syntax compliance, the base parameter names do not follow CSS naming conventions, they also 
     do not include every possible CSS setting, base your setting on the parameter names shown in this document.



     TIPS AND TRICKS:

     1. This data file is a JavaScript file, your values may be dynamically generated with code.

     2. This file may be included within your document by placing the contents within a script tag...
        <script language='javascript'>settings go here</script> (Great for server side generated menus.)

     3. The menu items support standard HTML or plain text, to use HTML convert any double quotes to single quotes
        or use (\").

     4. Absolute Icons will function as a bridge between menu groups. A safe haven for the mouse to get from one
        menu group to another without requiring the menu groups to touch each other.

     5. Animated Gif's within a Rollover will activate when the rollover appears (applies to pointer icons as well).

     6. Items which to not have a child sub menu or URL link will not show a rollover effect.  This allows for the
        use of items as headings or special end caps.




     IMPORTANT NOTES


     **All file references must be specified relative to the location of this data file, not the HTML page.

     **An 'Object Expected' error usually results from an incorect codebase setting or missing support file.

     **All values exept numbers and true/false statements must be enclosed by double quotes (pairs of numbers
       should also be enclosed in quotes - "1,1,...").
     

--------------------------------------------End Documentation----------------------------------------------------*/





//---MENU SETTINGS START BELOW THIS LINE


  //Unique Menu Id
       this.uid = 996645



/**********************************************************************************************

                               Icon Images

**********************************************************************************************/
	
	//This menu implemenation does not use icon images.



/**********************************************************************************************

                              Global - Menu Container Settings

**********************************************************************************************/


	this.menu_background_color = "transparent"
	this.menu_border_color = "#999999"
	this.menu_border_width = "1"
	this.menu_padding = "0,0,0,0"
	this.menu_border_style = "solid"
	this.divider_caps = false
	this.divider_width = 4
	this.divider_height = 0
	this.divider_background_color = "transparent"
	this.divider_border_style = "none"
	this.divider_border_width = 0
	this.divider_border_color = "#000000"
	this.menu_is_horizontal = false
	this.menu_width = "100"
	this.menu_xy = "-80,-2"
	this.menu_scroll_direction = 1
	this.menu_scroll_reverse_on_hide = true
	this.menu_scroll_delay = 0
	this.menu_scroll_step = 5




/**********************************************************************************************

                              Global - Menu Item Settings

**********************************************************************************************/


	this.menu_items_text_color = "#000000"
	this.menu_items_background_color_roll = "#999999"
	this.menu_items_text_decoration = "none"
	this.menu_items_font_family = "Verdana"
	this.menu_items_font_size = "11px"
	this.menu_items_font_style = "normal"
	this.menu_items_font_weight = "normal"
	this.menu_items_text_align = "left"
	this.menu_items_padding = "3,2,3,3"
	this.menu_items_border_style = "solid"
	this.menu_items_border_color = "#000000"
	this.menu_items_border_width = 0
	this.menu_items_width = 98
	this.menu_items_background_color = "#cccccc"
	this.menu_items_text_color_roll = "#ffffff"




/**********************************************************************************************

                              Main Menu Settings

**********************************************************************************************/


	this.menu_items_text_color_main = "#666666"
        this.menu_items_text_color_roll_main = "#000000"
        this.menu_items_background_color_main = "#ffffff"
        this.menu_items_background_color_roll_main = "transparent"
        this.menu_items_background_image_main = "main_default.gif"
        this.menu_items_background_image_roll_main = "main_roll.gif"
        this.menu_items_font_family_main = "Verdana"
        this.menu_items_font_weight_main = "bold"
        this.menu_items_font_style_main = "normal"
        this.menu_items_font_size_main = "11px"
        this.menu_border_width_main = "0"
        this.menu_padding_main = "0,0,0,0"
        this.menu_items_padding_main = "4,5,11,0"
        this.menu_is_horizontal_main = true

        this.item0 = "Geschmacksmuster"
        this.item1 = "Skilled"
        this.item2 = "Employer"
        this.item3 = "Business"




/**********************************************************************************************

                              Sub Menu Settings

**********************************************************************************************/


    //Sub Menu 0

        this.menu_xy0 = "-98,0"
        this.menu_width0 = "98"

        this.item0_0 = "Web Store"
        this.item0_1 = "Designer CRM"
        this.item0_2 = "Real Estate"
        this.item0_3 = "Law Services Firm"


        this.url0_0 = "http://www.worlddo.com/en/info/webstore.htm"
        this.url0_1 = "http://www.worlddo.com/en/solutions/design.htm"
        this.url0_2 = "http://www.worlddo.com/en/solutions/realestate.htm"
        this.url0_3 = "http://www.worlddo.com/en/solutions/law.htm"



    //Sub Menu 1

        this.menu_xy1 = "-98,0"
        this.menu_width1 = "98"

        this.item1_0 = "Video Add On"
        this.item1_1 = "Invoices & Quotes"
        this.item1_2 = "Accounting"
        this.item1_3 = "Mail"
        this.item1_4 = "Time and Expense Billing"
        this.item1_5 = "Projects"
        this.item1_6 = "Forms"
        this.item1_6 = "Account Upgrade"


        this.url1_0 = "http://www.worlddo.com/en/info/wd_video.htm"
        this.url1_1 = "http://www.worlddo.com/en/info/wd_invoice.htm"
        this.url1_2 = "http://www.worlddo.com/en/info/wd_accounts.htm"
        this.url1_3 = "http://www.worlddo.com/en/info/wd_mail.htm"
        this.url1_4 = "http://www.worlddo.com/en/info/wd_time.htm"
        this.url1_5 = "http://www.worlddo.com/en/info/wd_project.htm"
        this.url1_6 = "http://www.worlddo.com/en/info/wd_workflows_forms.htm"
        this.url1_6 = "http://www.worlddo.com/en/info/webstore_hosting.htm"



    //Sub Menu 2

        this.menu_xy2 = "-98,0"
        this.menu_width2 = "98"

        this.item2_0 = "Template Setup"
        this.item2_1 = "Account Upgrade"
        this.item2_2 = "Custom Forms"
        this.item2_3 = "Data Migration"
        this.item2_4 = "User Setup"


        this.url2_0 = "http://www.worlddo.com/en/info/webstore_templates.htm"
        this.url2_1 = "http://www.worlddo.com/en/info/webstore_hosting.htm"
        this.url2_2 = "http://www.worlddo.com/en/wd_custom.htm"
        this.url2_3 = "http://www.worlddo.com/en/support/datamigration.htm"
        this.url2_4 = "http://www.worlddo.com/en/support/setup.htm"




    //Sub Menu 3

        this.menu_xy3 = "-98,0"
        this.menu_width3 = "98"

        this.item3_0 = "Help Desk"
        this.item3_1 = "Tutorials"
        this.item3_2 = "Priority Support"
        this.item3_3 = "FAQs"


        this.url3_0 = "http://wd.worlddo.com/"
        this.url3_1 = "http://www.worlddo.com/en/support.htm"
        this.url3_2 = "http://www.worlddo.com/en/support/support_priority.htm"
        this.url3_3 = "http://wd.worlddo.com/"







}///////////////////////// END Menu Data /////////////////////////////////////////



//Document Level Settings

cdd__activate_onclick = false
cdd__showhide_delay = 100
cdd__url_target = "_self"
cdd__url_features = "resizable=1, scrollbars=1, titlebar=1, menubar=1, toolbar=1, location=1, status=1, directories=1, channelmode=0, fullscreen=0"
cdd__display_urls_in_status_bar = true
cdd__default_cursor = "hand"



//NavStudio Code (Warning: Do Not Alter!)

if (window.showHelp){b_type = "ie"; if (!window.attachEvent) b_type += "mac";}if (document.createElementNS) b_type = "dom";if (navigator.userAgent.indexOf("afari")>-1) b_type = "safari";if (window.opera) b_type = "opera"; qmap1 = "\<\script language=\"JavaScript\" vqptag='loader_sub' src=\""; qmap2 = ".js\">\<\/script\>";;function iesf(){};;function vqp_error(val){alert(val)}
if (b_type){document.write(qmap1+cdd__codebase+"pbrowser_"+b_type+qmap2);document.close();}


