
//  QuickMenu Pro, Copyright (c) - 2002, OpenCube Inc. - http://www.opencube.com
//  
//
//
//  QuickMenu Pro - (QuickMenu v3.0) Works With....
//
//      IE4, IE5.x, IE6 (Win 95, 98, ME, 2000, NT, XP)
//      IE4, IE5.x, &up (Mac)
//      NS4.x (All Platforms)
//      NS5/6.x (All Platforms)
//      NS7 (All Platforms)
//      Opera 5,6,7 (All Platforms)
//      Mozilla 1.0 & up (All Platforms)
//      Konqueror 3.0 & up (Linux)
//       
//
//  
//  To customize QuickMenu Pro open this file in a simple text 
//  editor (Notepad or similar). Modify and add parameters (all 
//  customizable parameters start with 'DQM_'), save this file,
//  and open 'sample.htm' in a browser to view your menu. View
//  the source for sample.htm for information on connecting 
//  sub menus to HTML images or build your page around the
//  included sample.htm file.
//
//  QuickMenu conditionally loads the necessary JavaScript
//  files (.js) depending on the browser and platform the user
//  is viewing the menu on. The total file size for each
//  browser / platform scenario is no larger than 12K.
//
//  This sample data file contains comments and help information
//  to assist in the initial customization of your drop down 
//  menu. If you base your implementation on this documented template
//  we recommend the removal of the comments before using on the web, as 
//  to optimize the overall file size and load time of the menu for 
//  the end user.  With the comments removed, this sample data files
//  size may be reduced by as much as 70%. Note: To simplify comment 
//  removal there is a uncommented version of this sample template
//  offered in the 'samples' folder.
//
//
//  NOTE: Parameters with an appended '//' are commented out,
//        delete the '//' to activate the parameter. 
//
//        Commenting out required parameters will cause errors.
//
//        Text values, except TRUE and FALSE statements, must be
//        enclosed by double quotes (").
//  
//        Each parameter value should appear on its own line.
//
//        This data file may also be placed within your HTML page
//        by enclosing between JavaScript tags.
//
//        Due to browser limitations, DHTML menus will not appear
//        on top of Flash objects, across frames, or over certain
//        form field elements. A hide and show workaround for form
//        fields is included with this menu (see the 'Menu event 
//        triggered custom function calls' section below).         




/*-------------------------------------------
Copyright Notice - The following parameter is 
required in order for the menu to function.
--------------------------------------------*/


 


/*-------------------------------------------
required menu Settings
--------------------------------------------*/


   DQM_sub_menu_width = 130      //default sub menu widths
   DQM_sub_xy = "0,0"            //default sub x,y coordinates
   
   
   DQM_codebase = ""             //relative location of .js files
   DQM_urltarget = "_self"       //set to: _self, _parent, _new, or "my frame name"

   DQM_border_width = 1
   DQM_divider_height = 0

   DQM_border_color = "#666666"  //Hex color value or 'transparent'
   DQM_menu_bgcolor = "#e6e6e6"  //Hex color value or 'transparent'
   DQM_hl_bgcolor = "#c6c6c6"    //Hex color value
   

   /*---The following parameter defines the delay
   -----time between the mouse moving outside of
   -----a sub menu and the sub menu actually closing.
   -----In all browsers except Netscape 4.x this time 
   -----period starts after the mouse leaves the sub 
   -----menu and the user stops moving the mouse. 
   -----This setting is useful for reducing end-user 
   -----error in the selection of sub menus. Defined 
   -----in milliseconds (1/1000s)---*/

   DQM_mouse_off_delay = 100
   
  
   /*---Internet Explorer Mac Offset Fix - The following
   -----parameters correct position reporting bugs in
   -----ie4.x and ie5.x on the Mac OS9 and OSX platforms.
   -----Adjust the offsets below until the first level
   -----sub menus pop up in the correct location.*/
   
   DQM_os9_ie5mac_offset_X = 10
   DQM_os9_ie5mac_offset_Y = 15

   DQM_osx_ie5mac_offset_X = 0
   DQM_osx_ie5mac_offset_Y = 0

   DQM_ie4mac_offset_X = -8
   DQM_ie4mac_offset_Y = -50


   /*---Netscape 4.x fix option - bugs in Netscape 4.x
   -----can cause layers (sub menus) to be rendered
   -----incorrectly upon resizing the browser window.
   -----The only way to work around this issue is to reload
   -----the page after a resize. The following parameters allow
   -----the menu to automatically reload the page for the user
   -----after a resize, prompts the user to reload the page
   -----manually after resize, or attempts to correct the menu
   -----after a resize without reloading.-----*/
   
   DQM_nn4_reaload_after_resize = true

   DQM_nn4_resize_prompt_user = false
   DQM_nn4_resize_prompt_message = "To reinitialize the navigation menu please click the 'Reload' button."
   

   /*---Opera 4 & up fix - The following parameter option
   -----corrects div mouse detection bugs on Opera. Set the
   -----parameter value to true if your sub menus are located
   -----at the lowest point on the HTML page.---*/

   DQM_use_opera_div_detect_fix = true;


/*-------------------------------------------
Internet Explorer Transition Effects - IE5.5 & UP

Note: All non supporting browsers will ignore
the effect settings below while retaining the
complete sub menu functionality and look.
--------------------------------------------*/

	
   /*----Options include - none | fade | pixelate |
   ------iris | slide | gradientwipe | checkerboard |
   ------radialwipe | randombars | randomdissolve |stretch */

   DQM_sub_menu_effect = "pixelate"
   DQM_sub_item_effect = "iris"


   /*----Define the effect duration in seconds below---*/
   
   DQM_sub_menu_effect_duration = .4
   DQM_sub_item_effect_duration = .4

  
   /*----Customization option settings for the various effect
   ------transitions may be defined below---*/

   DQM_effect_pixelate_maxsqare = 25
   DQM_effect_iris_irisstyle = "STAR"          //CROSS, CIRCLE, PLUS, SQUARE, or STAR
   DQM_effect_checkerboard_squaresx = 14
   DQM_effect_checkerboard_squaresY = 14
   DQM_effect_checkerboard_direction = "RIGHT"   //UP, DOWN, LEFT, RIGHT
   

   /*----Note: Due to browser limitations, when using a 
   ------drop shadow effect or sub menu opacity values
   ------less than 100, combined with sub menu and or
   ------sub menu item transitions, undesirable transition
   ------results may occur. To remedy the issue use
   ------semi transparent sub menus or borders without
   ------transition effects or use transition effects without
   ------borders and set the sub menu opacity value to 100.---*/
   
   /*----Opacity is defined with a value between
   ------1 and 100 with 100 being opaque---*/   	

   DQM_sub_menu_opacity = 100

   DQM_dropshadow_color = "none"                //Hex color value or 'none'
   DQM_dropshadow_offx = 5                      //drop shadow width
   DQM_dropshadow_offy = 5	                //drop shadow height



/*---------------------------------------------
Optional event triggered custom function calls
----------------------------------------------*/


   /*----This menu uses the documents onload event to
   ------initially generate the menus. If your HTML page requires
   ------the onload statement for calling other script functions
   ------or statements you may execute your code using the
   ------parameter below------*/

   //DQM_onload_code = "alert('custom function - onload')"


   /*----the following parameters may be used to execute
   ------custom code upon menu pop-up and hide.
   ------These are useful for hiding drop down boxes which
   ------may not be displayed under the menus due to
   ------browser limitations with certain form fields.---*/

   //DQM_showmenu_code0 = "status = 'custom show menu function call - menu0'"
   //DQM_showmenu_code1 = "status = 'custom show menu function call - menu1'"

   //DQM_hidemenu_code0 = "status = 'custom hide menu function call - menu0'"
   //DQM_hidemenu_code1 = "status = 'custom hide menu function call - menu1'"

 
   /*----the following parameters may be used to execute
   ------custom code upon clicking a menu item. If a URL link 
   ------and custom code are both defined the code will be 
   ------executed first, then the URL link will be loaded. This 
   ------parameter option is useful for opening custom pop up windows.---*/

   //DQM_clickitem_code0_0 = "alert('custom Function - Menu Item 0_0')"
   //DQM_clickitem_code1_0 = "alert('custom Function - Menu Item 1_0')"



/*-------------------------------------------
Required font Settings
--------------------------------------------*/
   

   DQM_textcolor = "#333333"
   DQM_fontfamily = "Arial"            //Any available system font     
   DQM_fontsize = 11		         //Defined with pixel sizing  	
   DQM_fontsize_ie4 = 9		         //Defined with point sizing
   DQM_textdecoration = "normal"         //set to: 'normal', or 'underline'
   DQM_fontweight = "normal"             //set to: 'normal', or 'bold'
   DQM_fontstyle = "normal"	         //set to: 'normal', or 'italic' 	
   DQM_hl_textcolor = "#000000"
   DQM_hl_textdecoration = "underline"   //set to: 'normal', or 'underline'

   DQM_margin_top = 2
   DQM_margin_bottom = 3
   DQM_margin_left = 5
   DQM_margin_right = 4

   DQM_text_alignment = "left"           //set to: 'left', 'center' or 'right'
   



/*---------------------------------------------
Optional Icon Images - Relative Positioning

The relative positioned icon images are automatically
placed directly before or after the sub menu items
text (placement is determined by text alignment). 
By adding transparent space to the left or right
of the icon image itself, a custom image to text gap
may be obtained (Note: The gap space between icon
images and text may also be achieved by using the
menus optional 2nd icon image, see the 'optional 2nd
icon images' section for more information). The 
relative positioned icons are useful for creating
text bullets for aesthetic purposes or symbolic icons
for different sub menu items.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/


   DQM_icon_image0 = "menu_fax/bullet.gif"
   DQM_icon_rollover0 = "menu_fax/bullet_hl.gif"
   DQM_icon_image_wh0 = "13,8"

   DQM_icon_image1 = "menu_fax/arrow.gif"
   DQM_icon_rollover1 = "menu_fax/arrow.gif"
   DQM_icon_image_wh1 = "13,10"


/*---------------------------------------------
Optional 2nd Icon Images - Absolute Positioning

The 2nd absolute positioned icons may be positioned 
anywhere within the sub menu items bounding area. 
These icon images are useful for creating arrows 
or other symbols which indicate the existence of a 
child sub menu. Sub menu text alignment or length 
will not affect the images placement.  If your images 
undesirably appear over the top of sub menu text 
items then adjust the icons coordinates, sub menu 
widths, or margins accordingly.

Note: Icon image coordinates are defined relative to
the top right corner of the sub menu item when the
sub menu text is left aligned, or relative to the
top left corner when the sub menus text is right
aligned.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_2nd_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/

   DQM_2nd_icon_image0 = "menu_fax/arrow.gif"
   DQM_2nd_icon_rollover0 = "menu_fax/arrow.gif"
   DQM_2nd_icon_image_wh0 = "13,10"
   DQM_2nd_icon_image_xy0 = "0,4"


/*---------------------------------------------
Optional Status Bar Text

Note: Custom defined status bar text for a menu item 
will be displayed in place of the URL when the 
'DQM_show_urls_statusbar' parameter is set to true.
-----------------------------------------------*/

   DQM_show_urls_statusbar = false
   
   //DQM_status_text0 = "Sample text - Main Menu Item 0"
   //DQM_status_text1 = "Sample text - Main Menu Item 1"

   //DQM_status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 0"	
   //DQM_status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 1"	



/*-------------------------------------------

Optional main menu rollover images

--------------------------------------------*/

  

   DQM_rollover_image0 = "menu_fax/menu_naslovna_hl.gif"

   DQM_rollover_wh0 = "76,21"



   DQM_rollover_image1 = "menu_fax/menu_ofakultetu_hl.gif"

   DQM_rollover_wh1 = "92,21"



   DQM_rollover_image2 = "menu_fax/menu_informacije_hl.gif" 

   DQM_rollover_wh2 = "92,21"



   DQM_rollover_image3 = "menu_fax/menu_program_hl.gif" 

   DQM_rollover_wh3 = "132,21"

  

   DQM_rollover_image4 = "menu_fax/menu_nastavnici_hl.gif" 

   DQM_rollover_wh4 = "92,21"



   DQM_rollover_image5 = "menu_fax/menu_knjiznica_hl.gif" 

   DQM_rollover_wh5 = "76,21"



   DQM_rollover_image6 = "menu_fax/menu_dogadjaji_hl.gif" 

   DQM_rollover_wh6 = "92,21"



   DQM_rollover_image7 = "menu_fax/menu_resursi_hl.gif" 

   DQM_rollover_wh7 = "76,21"

  





/*---------------------------------------------

Sub Menu Item Settings

-----------------------------------------------*/



DQM_sub_xy0 = "-60,20"

DQM_sub_menu_width0 = 150

DQM_subdesc0_0 = "<font color='#000000'>Naslovna stranica</font><br>Dobro došli na web stranice Ekonomskog fakulteta u Osijeku."

DQM_icon_index0_0 = 0

DQM_url0_0 = "index.html"



DQM_sub_xy1 = "-75,19"

DQM_sub_menu_width1 = 140;

DQM_subdesc1_0 = "Povijest"

DQM_subdesc1_1 = "Uprava"

DQM_subdesc1_2 = "Razine obrazovanja"

DQM_subdesc1_3 = "Organizacijske jedinice i službe"

DQM_icon_index1_0 = 0

DQM_icon_index1_1 = 0

DQM_icon_index1_2 = 0

DQM_icon_index1_3 = 0

DQM_url1_0 = "page.php?page=hrv/ofakultetu/povijest.html&title=Povijest"

DQM_url1_1 = "page.php?page=hrv/ofakultetu/uprava.html&title=Uprava"

DQM_url1_2 = "page.php?page=hrv/ofakultetu/razine_obrazovanja.html&title=Razine obrazovanja"

DQM_url1_3 = "page.php?page=hrv/orgjed/index.html&title=Organizacijske jedninice i sluľbe Ekonomskog fakulteta u Osijeku"







DQM_sub_xy2 = "-75,19"

DQM_sub_menu_width2 = 145

DQM_subdesc2_0 = "Raspored sati" 

DQM_subdesc2_1 = "Ispitni rokovi"

DQM_subdesc2_2 = "Literatura"

DQM_subdesc2_3 = "Stipendije"

DQM_subdesc2_4 = "Prijava i upis"

DQM_subdesc2_5 = "Rezultati I. roka"

DQM_subdesc2_6 = "Lokalni tel. brojevi"

DQM_subdesc2_7 = "<b>Nezavisne organizacije</b>"

DQM_subdesc2_8 = "AIESEC"

DQM_subdesc2_9 = "Ukrik"

DQM_subdesc2_10 = "SIC"

DQM_icon_index2_0 = 0

DQM_icon_index2_1 = 0

DQM_icon_index2_2 = 0

DQM_icon_index2_3 = 0

DQM_icon_index2_4 = 0

DQM_icon_index2_5 = 0

DQM_icon_index2_6 = 0

DQM_icon_index2_7 = 0

DQM_icon_index2_8 = 0

DQM_icon_index2_9 = 0

DQM_icon_index2_10 = 0


DQM_url2_0 = "page.php?page=hrv/studinfo/raspored/index.html&title=Raspored sati"

DQM_url2_1 = "page.php?page=hrv/studinfo/ispiti/rokovi/index.html&title=Ispitni rokovi"

DQM_url2_2 = "page.php?page=hrv/studinfo/ispiti/literatura/index.html&title=Ispitna literatura"

DQM_url2_3 = "page.php?page=hrv/stipendije/index.html&title=Stipendije"

DQM_url2_4 = "page.php?page=prijem.html&title=Prijava i upis na Fakultet"

DQM_url2_5 = "prijemni1_2003/index.html"

DQM_url2_6 = "page.php?page=hrv/lokalni/index.html"

DQM_url2_7 = "#"

DQM_url2_8 = "http://www.aiesec.org"

DQM_url2_9 = "http://www.ukrik.hr"

DQM_url2_10 = "http://www.ukrik.hr/sichrv.htm"





DQM_sub_xy3 = "-115,19"

DQM_sub_menu_width3 = 140

DQM_subdesc3_0 = "Stručni studij Osijek"

DQM_subdesc3_1 = "Stručni studij Varaždin"

DQM_subdesc3_2 = "<b>Dodiplomski</b>"

DQM_subdesc3_3 = "financijski management"

DQM_subdesc3_4 = "marketing management"

DQM_subdesc3_5 = "<b>Poslijediplomski</b>"

DQM_subdesc3_6 = "financije i bankarstvo"

DQM_subdesc3_7 = "management"

DQM_subdesc3_8 = "marketing"

DQM_subdesc3_9 = "poduzetništvo"

DQM_icon_index3_0 = 0

DQM_icon_index3_1 = 0
DQM_icon_index3_2 = 0
DQM_icon_index3_3 = 1
DQM_icon_index3_4 = 1
DQM_icon_index3_5 = 0
DQM_icon_index3_6 = 1
DQM_icon_index3_7 = 1
DQM_icon_index3_8 = 1
DQM_icon_index3_9 = 1

DQM_url3_0 = "page.php?page=hrv/program/dodipl/index.html&title=Dodiplomski studij"
DQM_url3_1 = "page.php?page=hrv/program/dodipl/varazdin.html&title=Dodiplomski studij u Varaľdinu"
DQM_url3_2 = "page.php?page=hrv/program/dodipl/index.html&title=Dodiplomski studij"
DQM_url3_3 = "page.php?page=hrv/program/dodipl/index.html&title=Dodiplomski studij"
DQM_url3_4 = "page.php?page=hrv/program/dodipl/index.html&title=Dodiplomski studij"
DQM_url3_5 = "#"
DQM_url3_6 = "http://www.efos.hr/financije"
DQM_url3_7 = "http://management.efos.hr"
DQM_url3_8 = "http://oliver.efos.hr/marketing"
DQM_url3_9 = "http://poduzetnicki.efos.hr"





DQM_sub_xy4 = "-75,19"

DQM_sub_menu_width4 = 140;

DQM_subdesc4_0 = "Prema zvanjima"

DQM_subdesc4_1 = "Info za nastavnike"

DQM_icon_index4_0 = 0

DQM_icon_index4_1 = 0

DQM_url4_0 = "nastavnici.html"

DQM_url4_2 = "page.php?page=nastavnici/info.html&title=Info za nastavnike"





DQM_sub_xy5 = "-60,19"

DQM_sub_menu_width5 = 140;

DQM_subdesc5_0 = "Opće informacije"

DQM_subdesc5_1 = "Knjižnica on-line"

DQM_subdesc5_2 = "Baze podataka"

DQM_subdesc5_3 = "Izdavačka djelatnost"

DQM_subdesc5_4 = "Ekonomski vjesnik"

DQM_subdesc5_5 = "Knjige"

DQM_icon_index5_0 = 0

DQM_icon_index5_1 = 0

DQM_icon_index5_2 = 0

DQM_icon_index5_3 = 0

DQM_icon_index5_4 = 1

DQM_icon_index5_5 = 1

DQM_url5_0 = "page.php?page=hrv/orgjed/knjiznica/index.html"

DQM_url5_1 = "page.php?page=knjiz-online/index.html"

DQM_url5_2 = "page.php?page=hrv/baza_knjiz/knjiznica-baza.html"

DQM_url5_3 = "page.php?page=hrv/izdjelatnost/index.html"

DQM_url5_4 = "hrv/izdjelatnost/evjesnik/index.html"

DQM_url5_5 = "page.php?page=hrv/izdjelatnost/knjige.html"



DQM_sub_xy6 = "-75,19"

DQM_sub_menu_width6 = 140;

DQM_subdesc6_0 = "Novosti & događaji"

DQM_subdesc6_1 = "Konferencije i simpoziji"

DQM_icon_index6_0 = 0

DQM_icon_index6_1 = 0

DQM_url6_0 = "page.php?page=dogadjaji.html&title=dogadjaji.html"

DQM_url6_1 = "page.php?page=izrada.html"





DQM_sub_xy7 = "-140,19"

DQM_sub_menu_width7 = 140;

DQM_subdesc7_0 = "Računalni resursi"

DQM_subdesc7_1 = "Poduzetnički portal"

DQM_icon_index7_0 = 0

DQM_icon_index7_1 = 0

DQM_url7_0 = "page.php?page=hrv/racunalni/index.html&title=Računalni resursi"

DQM_url7_1 = "http://pportal.efos.hr"

