// Handles Menu Processing
var menus = [];

// --- menu class ---
function menu (item_struct, pos, styles) {
	// browser check
	this.item_struct = item_struct;
	this.pos = pos;
	this.styles = styles;
	this.id = menus.length;
	this.items = [];
	this.children = [];
	
	this.add_item = menu_add_item;
	this.hide = menu_hide;
	
	this.onclick = menu_onclick;
	this.onmouseout = menu_onmouseout;
	this.onmouseover = menu_onmouseover;
	this.onmousedown = menu_onmousedown;
	
	var i;
	for (i = 0; i < this.item_struct.length; i++)
		new menu_item(i, this, this);
	for (i = 0; i < this.children.length; i++)
		this.children[i].visibility(true);
	menus[this.id] = this;
}
function menu_add_item (item) {
	var id = this.items.length;
	this.items[id] = item;
	return (id);
}
function menu_hide () {
	for (var i = 0; i < this.items.length; i++) {
		this.items[i].visibility(false);
		this.items[i].switch_style('onmouseout');
	}
}
function menu_onclick (id) {
	var item = this.items[id];
	return (item.fields[1] ? true : false);
}
function menu_onmouseout (id) {
	this.hide_timer = setTimeout('menus['+ this.id +'].hide();',
		this.pos['hide_delay'][this.active_item.depth]);
	if (this.active_item.id == id)
		this.active_item = null;
}
function menu_onmouseover (id) {
	this.active_item = this.items[id];
	clearTimeout(this.hide_timer);
	var curr_item, visib;
	for (var i = 0; i < this.items.length; i++) {
		curr_item = this.items[i];
		visib = (curr_item.arrpath.slice(0, curr_item.depth).join('_') ==
			this.active_item.arrpath.slice(0, curr_item.depth).join('_'));

// Change color for parent
//		if (visib) curr_item.switch_style (curr_item == this.active_item ? 'onmouseover' : 'onmouseout');

		if (visib)
			{
			this.active_parent=this.active_item.parent;
			if ((curr_item.depth<this.active_item.depth)
			 &&((curr_item==this.active_parent)
			 || (curr_item==this.active_parent.parent)))
			curr_item.switch_style('onmouseover')
			else curr_item.switch_style (curr_item == this.active_item ? 'onmouseover' : 'onmouseout');
			}
		
		curr_item.visibility(visib);
	}
}
function menu_onmousedown (id) {
	this.items[id].switch_style('onmousedown');
}
// --- menu item Class ---
function menu_item (path, parent, container) {
	this.path = new String (path);
	this.parent = parent;
	this.container = container;
	this.arrpath = this.path.split('_');
	this.depth = this.arrpath.length - 1;
	// get pointer to item's data in the structure
	var struct_path = '', i;
	for (i = 0; i <= this.depth; i++)
		struct_path += '[' + (Number(this.arrpath[i]) + (i ? 2 : 0)) + ']';
	eval('this.fields = this.container.item_struct' + struct_path);
	if (!this.fields) return;
	
	// assign methods	
	this.get_x = mitem_get_x;
	this.get_y = mitem_get_y;
	this.init = mitem_init;
	this.visibility = mitem_visibility;
	this.switch_style = mitem_switch_style;
	
	// register in the collections
	this.id = this.container.add_item(this);
	parent.children[parent.children.length] = this;
	
	// init recursively
	this.init();
	this.children = [];
	var child_count = this.fields.length - 2;
	for (i = 0; i < child_count; i++)
		new menu_item (this.path + '_' + i, this, this.container);
	this.switch_style('onmouseout');
}
function mitem_init() 
{
// provide icon from second to third level
        var triangle;
        if ((this.depth==1)&&((this.fields.length-3)>0)) 
	{triangle='style="background-image:url(x_arrow_right.gif); BACKGROUND-POSITION: right bottom; BACKGROUND-REPEAT: no-repeat"';
	} else  {triangle='';
                }
// provide correct web site
	var web_site;
        var target_stmt;
        if ((this.depth==2)) 
	{web_site='http://www.naplesgolf.org/'; target_stmt='target="_blank"';
	} else  {web_site=''; target_stmt='target="_parent"';
                }
// provide correct web site (Einbau Juergen: Loeschen NG.org wenn y00000.htm)
        if (this.fields[1] > "x9999999.htm") 
	{        web_site=''; target_stmt='target="_parent"';
	} 
	document.write (
		'<a id="mi_' + this.container.id + '_'
+ this.id +'" class="m' + this.container.id + 'l' + this.depth 
+'o" href="'+web_site+'' + this.fields[1] + '" '+target_stmt+' style="position: absolute; top: '
+ this.get_y() + 'px; left: '	+ this.get_x() + 'px; width: '
+ this.container.pos['width'][this.depth] + 'px; height: '
+ this.container.pos['height'][this.depth] + 'px; visibility: hidden;'
+' background: black; color: white; z-index: ' + this.depth + ';" '
+ 'onclick="return menus[' + this.container.id + '].onclick('
+ this.id + ');" onmouseout="menus[' + this.container.id + '].onmouseout('
+ this.id + ');" onmouseover="menus[' + this.container.id + '].onmouseover('
+ this.id + ');" onmousedown="menus[' + this.container.id + '].onmousedown('
+ this.id + ');"><div '+triangle+' class="m'  + this.container.id + 'l' 
+ this.depth + 'i">'
+ this.fields[0] + '</div></a>\n'
		);
	this.element = document.getElementById('mi_' + this.container.id + '_' + this.id);
}
function mitem_visibility(make_visible) {
	if (make_visible != null) {
		if (this.visible == make_visible) return;
		this.visible = make_visible;
		if (make_visible)
			this.element.style.visibility = 'visible';
		else if (this.depth)
			this.element.style.visibility = 'hidden';
	}
	return (this.visible);
}
function mitem_get_x() {
	var value = 0;
	for (var i = 0; i <= this.depth; i++)
		value += this.container.pos['block_left'][i]
		+ this.arrpath[i] * this.container.pos['left'][i];

// Reverse menu if too wide (das ist die max. Breite des Menus)
// 	var max_len = 770; urspruenglicher Wert
	var max_len = 600;

	if ((((value+2*this.container.pos['width'][1])>max_len) && (this.depth==1)) || (((value+this.container.pos['width'][2])>max_len)&&(this.depth==2)))
	{
	value = 0;
	for (var i = 0; i <= this.depth; i++)
		{
		if (i==0)	{value += this.container.pos['block_left'][i] + this.arrpath[i] * this.container.pos['left'][i];}
		else
			{
			if (i==1)	{value = value+this.container.pos['width'][i-1]-this.container.pos['block_left'][i] - this.container.pos['width'][i] - this.arrpath[i] * this.container.pos['left'][i];}
			else
				{
				if ((value+this.container.pos['block_left'][i] + this.arrpath[i] * this.container.pos['left'][i]+this.container.pos['width'][i])>max_len)
					{value = value-this.container.pos['block_left'][i] - this.arrpath[i] * this.container.pos['left'][i];}
				else
					{value = value+this.container.pos['block_left'][i] + this.arrpath[i] * this.container.pos['left'][i];}
				}
			}
		}
	}
// End of reverse
	return (value);
}
function mitem_get_y() {
	var value = 0;
	for (var i = 0; i <= this.depth; i++)
		value += this.container.pos['block_top'][i]
		+ this.arrpath[i] * this.container.pos['top'][i];
	return (value);
}
function mitem_switch_style(state) {
	if (this.state == state) return;
	this.state = state;
	var style = this.container.styles[state];
	for (var i = 0; i < style.length; i += 2)
		if (style[i] && style[i+1])
			eval('this.element.style.' + style[i] + "='" 
			+ style[i+1][this.depth] + "';");
}



var menu_items = [


["Vermietungen","forrent_2.htm",
  ["> Alle Mietobjekte","forrent_2.htm",
  ],
  ["Wohnungen 1-2 Personen:",,
    ["> Apart MI-00051 am Strand!","y00051_2.htm"],
    ["> Apart BE-05197 Privat-Pool","be5197_2.htm"],
  ],
  ["Wohnungen 1-4 Personen a:",,
    ["> Wohng WP-00151 Parterre","x00151.htm"],
    ["> Wohng WP-00153 Parterre","x00153.htm"],
    ["> Wohng WP-00154 Parterre","y00154_2.htm"],
    ["> Wohng WP-00156 Parterre","y00156_2.htm"],
    ["> Wohng WP-00157 Parterre","y00157_2.htm"],
    ["> Wohng WP-00158 Parterre","y00158_2.htm"],
    ["> Wohng WP-00159 1. Stock","y00159_2.htm"],
    ["> Wohng WP-00324 1. Stock","y00324_2.htm"],
    ["> Wohng WP-00336 1. Stock","x00336.htm"],
    ["> Wohng WP-02573 1. Stock","y02573_2.htm"],
    ["> Wohng WP-02634 Parterre","y02634_2.htm"],
    ["> Wohng WP-06232 1. Stock","wp6232_2.htm"],
    ["> Wohng WP-13963 1. Stock","w13963_2.htm"],
  ],
  ["Wohnungen 1-4 Personen b:",,
    ["> Wohng TC-00317 Parterre","x00317.htm"],
    ["> Wohng TC-00320 1. Stock","x00320.htm"],
    ["> Wohng TC-00329 Parterre","x00329.htm"],
    ["> Wohng TC-00366 1. Stock","y00366_2.htm"],
    ["> Wohng TC-00373 1. Stock","y00373_2.htm"],
    ["> Wohng TC-00374 1. Stock","y00374_2.htm"],
    ["> Wohng BH-00040 2. Stock","y00040_2.htm"],
    ["> Wohng NH-00045 Parterre","y00045_2.htm"],
    ["> Townh SP-00334 1+2Stock","x00334.htm"],
    ["> CHome GL-00378 1. Stock","y00378_2.htm"],
    ["> Apart MI-00051 am Strand!","y00051_2.htm"],
  ],
  ["Wohnungen 1-4 Pers FW 1a:",,
    ["> Wohng FW-00004 AL 2415 1S","x00004.htm"],
    ["> Wohng FW-00005 MF 2345 Pa","x00005.htm"],
    ["> Wohng FW-00006 CC 2100 Pa","x00006.htm"],
    ["> Wohng FW-00009 AL 2380 Pa","x00009.htm"],
    ["> Wohng FW-00014 RW 1655 Pa","x00014.htm"],
    ["> Wohng FW-00015 RW 1655 Pa","x00015.htm"],
    ["> Wohng FW-00016 OF 2274 Pa","x00016.htm"],
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-00023 AL 2380 Pa","x00023.htm"],
    ["> Wohng FW-00025 MF 2386 1S","y00025_2.htm"],
    ["> Wohng FW-00028 AL 2375 Pa","x00028.htm"],
    ["> Wohng FW-00031 AL 2380 1S","y00031_2.htm"],
    ["> Wohng FW-00032 MF 2381 Pa","y00032_2.htm"],
  ],
  ["Wohnungen 1-4 Pers FW 1b:",,
    ["> Wohng FW-00041 RW 1615 Pa","y00041_2.htm"],
    ["> Wohng FW-00044 MF 2350 Pa","y00044_2.htm"],
    ["> Wohng FW-00046 WC 2385 1S","y00046_2.htm"],
    ["> Wohng FW-00048 JC 2225 Pa","y00048_2.htm"],
    ["> Wohng FW-00049 CC 2004 Pa","y00049_2.htm"],
    ["> Wohng FW-00050 MF 2386 Pa","y00050_2.htm"],
    ["> Villa FW-00053 MC 2338 Pa","y00053_2.htm"],
    ["> Wohng FW-00054 MF 2350 1S","y00054_2.htm"],
    ["> Wohng FW-00055 RW 1665 1S","y00055_2.htm"],
    ["> Wohng FW-00056 RW 1655 1S","y00056_2.htm"],
    ["> Wohng FW-00057 MF 2386 1S","y00057_2.htm"],
    ["> Wohng FW-00059 MF 2360 1S","y00059_2.htm"],
    ["> Wohng FW-00060 MF 2386 Pa","y00060_2.htm"],
    ["> Wohng FW-00061 MF 2373 1S","y00061_2.htm"],
  ],
  ["Wohnungen 1-4 Pers FW 2a:",,
    ["> Wohng FW-00301 OF 2420 Pa","y00301_2.htm"],
    ["> Wohng FW-00302 CC 2100 1S","x00302.htm"],
    ["> Wohng FW-00303 RW 1615 Pa","x00303.htm"],
    ["> Wohng FW-00304 RW 1615 Pa","x00304.htm"],
    ["> Wohng FW-00323 CC 2036 1S","x00323.htm"],
    ["> Wohng FW-00331 RW 1675 Pa","x00331.htm"],
    ["> Wohng FW-00345 OF 2324 1S","x00345.htm"],
    ["> Wohng FW-00353 OF 2274 1S","x00353.htm"],
    ["> Wohng FW-00355 RW 1660 1S","y00355_2.htm"],
    ["> Wohng FW-00358 MF 2370 1S","x00358.htm"],
    ["> Wohng FW-00367 CC 1940 1S","y00367_2.htm"],
  ],
  ["Wohnungen 1-4 Pers FW 2b:",,
    ["> Wohng FW-00370 MF 2378 Pa","y00370_2.htm"],
    ["> Wohng FW-00376 MF 2386 Pa","y00376_2.htm"],
    ["> Wohng FW-10480 RW 1645 Pa","f10480_2.htm"],
    ["> Wohng FW-10481 CC 2004 1S","f10481_2.htm"],
    ["> Wohng FW-23644 CC 1908 Pa","f23644_2.htm"],
    ["> Wohng FW-23646 CC 2100 1S","f23646_2.htm"],
    ["> Wohng FW-23647 JC 2285 1S","y23647_2.htm"],
    ["> Wohng FW-23648 MF 2389 Pa","f23648_2.htm"],
    ["> Wohng FW-25034 OF 2372 1S","f25034_2.htm"],
    ["> Wohng FW-46509 OF 2372 1S","f46509_2.htm"],
  ],
  ["Wohnungen 5 Personen:",,
    ["> Wohng WP-02573 1. Stock","y02573_2.htm"],
    ["> Wohng WP-00153 Parterre","x00153.htm"],
    ["> Wohng FW-00005 MF 2345 Pa","x00005.htm"],
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-00031 AL 2380 1S","y00031_2.htm"],
    ["> Wohng FW-00049 CC 2004 Pa","y00049_2.htm"],
    ["> Villa FW-00053 MC 2338 Pa","y00053_2.htm"],
    ["> Wohng FW-00055 RW 1665 1S","y00055_2.htm"],
    ["> Wohng FW-00061 MF 2373 1S","y00061_2.htm"],
    ["> Wohng FW-00358 MF 2370 1S","x00358.htm"],
    ["> Wohng FW-23647 JC 2285 1S","y23647_2.htm"],
    ["> Wohng FW-23648 MF 2389 Pa","f23648_2.htm"],
    ["> Wohng BH-00040 2. Stock","y00040_2.htm"],
    ["> Townh SP-00334 1+2Stock","x00334.htm"],
  ],
  ["Wohnungen 6 Personen:",,
    ["> Wohng WP-00153 Parterre","x00153.htm"],
    ["> Wohng FW-00005 MF 2345 Pa","x00005.htm"],
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-00031 AL 2380 1S","y00031_2.htm"],
    ["> Wohng FW-00049 CC 2004 Pa","y00049_2.htm"],
    ["> Wohng FW-00055 RW 1665 1S","y00055_2.htm"],
    ["> Wohng FW-00061 MF 2373 1S","y00061_2.htm"],
    ["> Wohng FW-00358 MF 2370 1S","x00358.htm"],
    ["> Wohng FW-23647 JC 2285 1S","y23647_2.htm"],
    ["> Wohng FW-23648 MF 2389 Pa","f23648_2.htm"],
    ["> Wohng BH-00040 2. Stock","y00040_2.htm"],
    ["> Townh SP-00334 1+2Stock","x00334.htm"],
  ],
  ["Wohnungen 7 Personen:",,
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-23648 MF 2389 Pa","f23648_2.htm"],
  ],
  ["Wohnungen 8 Personen:",,
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
  ],
  ["Villen ohne Privat-Pool:",,
    ["> Naples: LR-00047 4 Pers","y00047_2.htm"],
    ["> Naples: TC-00309 6 Pers","x00309.htm"],
    ["> Naples: TC-00311 4 Pers","x00311.htm"],
    ["> Naples: TC-00313 4 Pers","y00313_2.htm"],
    ["> Naples: TC-00365 4 Pers","y00365_2.htm"],
    ["> Naples: TC-00375 6 Pers","y00375_2.htm"],
    ["> Bonita: CP-00339 4 Pers","x00339.htm"],
    ["> Bonita: CP-00340 2 Pers","x00340.htm"],
    ["> Bonita: CP-00341 6 Pers","x00341.htm"],
  ],
  ["Villen mit Privat-Pool:",,
    ["> Naples: IW-00027 6 Pers","x00027.htm"],
    ["> Naples: AR-00101 6 Pers","y00101_2.htm"],
    ["> Naples: AR-00102 10 Pers","y00102_2.htm"],
    ["> Naples: TC-00335 6 Pers","x00335.htm"],
    ["> Cape-C: CC-00351 6 Pers","y00351_2.htm"],
    ["> Naples: TC-00388 6 Pers","y00388_2.htm"],
    ["> Naples: BE-05197 2 Pers","be5197_2.htm"],
    ["> Naples: SH-14569 6 Pers","s14569_2.htm"],
  ],
],



["Winterpark","winterpark_2.htm",
  ["> NAPLES - Winterpark","winterpark_2.htm",
  ],
  ["Wohnungen direkt am Pool:",,
    ["> Wohng WP-00151 4 Pers Pa","x00151.htm"],
    ["> Wohng WP-00336 4 Pers 1S","x00336.htm"],
    ["> Wohng WP-06232 4 Pers 1S","wp6232_2.htm"],
  ],
  ["Wohnungen in Pool-Nähe:",,
    ["> Wohng WP-00154 4 Pers Pa","y00154_2.htm"],
    ["> Wohng WP-00158 4 Pers Pa","y00158_2.htm"],
    ["> Wohng WP-00159 4 Pers 1S","y00159_2.htm"],
    ["> Wohng WP-00324 4 Pers 1S","y00324_2.htm"],
    ["> Wohng WP-00380 4 Pers Pa","y00380_2.htm"],
    ["> Wohng WP-02573 5 Pers 1S","y02573_2.htm"],
    ["> Wohng WP-02634 4 Pers Pa","y02634_2.htm"],
  ],
  ["Wohnungen mit Fussweg:",,
    ["> Wohng WP-00153 6 Pers Pa","x00153.htm"],
    ["> Wohng WP-00156 4 Pers Pa","y00156_2.htm"],
    ["> Wohng WP-00157 4 Pers Pa","y00157_2.htm"],
    ["> Wohng WP-13963 4 Pers 1S","w13963_2.htm"],
  ],
  ["Wohnung mit Lanai (Balkon):",,
    ["> Wohng WP-00153 6 Pers Pa","x00153.htm"],
    ["> Wohng WP-00154 4 Pers Pa","y00154_2.htm"],
    ["> Wohng WP-00157 4 Pers Pa","y00157_2.htm"],
    ["> Wohng WP-00158 4 Pers 1S","y00159_2.htm"],
    ["> Wohng WP-00336 4 Pers 1S","x00336.htm"],
    ["> Wohng WP-02573 5 Pers 1S","y02573_2.htm"],
    ["> Wohng WP-06232 4 Pers 1S","wp6232_2.htm"],
    ["> Wohng WP-13963 4 Pers 1S","w13963_2.htm"],
  ],
],



["Falling Waters","falling_waters_2.htm",
  ["> NAPLES - Falling Waters","falling_waters_2.htm",
  ],
  ["Wohnen 050-350 m vom Pool:",,
    ["> Wohng FW-00014 RW 1655 Pa","x00014.htm"],
    ["> Wohng FW-00015 RW 1655 Pa","x00015.htm"],
    ["> Wohng FW-00016 OF 2274 Pa","x00016.htm"],
    ["> Wohng FW-00048 JC 2225 Pa","y00048_2.htm"],
    ["> Wohng FW-00055 RW 1665 1S","y00055_2.htm"],
    ["> Wohng FW-00056 RW 1655 1S","y00056_2.htm"],
    ["> Wohng FW-00301 OF 2420 Pa","y00301_2.htm"],
    ["> Wohng FW-00353 OF 2274 1S","x00353.htm"],
    ["> Wohng FW-00355 RW 1660 1S","y00355_2.htm"],
    ["> Wohng FW-00367 CC 1940 1S","y00367_2.htm"],
    ["> Wohng FW-10480 RW 1645 Pa","f10480_2.htm"],
    ["> Wohng FW-10481 CC 2004 1S","f10481_2.htm"],
    ["> Wohng FW-23644 CC 1908 Pa","f23644_2.htm"],
    ["> Wohng FW-23647 JC 2285 1S","y23647_2.htm"],
    ["> Wohng FW-25034 OF 2372 1S","f25034_2.htm"],
    ["> Wohng FW-46509 OF 2372 1S","f46509_2.htm"],
  ],
  ["Wohnen 350-600 m vom Pool:",,
    ["> Wohng FW-00004 AL 2415 1S","x00004.htm"],
    ["> Wohng FW-00005 MF 2345 Pa","x00005.htm"],
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-00028 AL 2375 Pa","x00028.htm"],
    ["> Wohng FW-00041 RW 1615 Pa","y00041_2.htm"],
    ["> Wohng FW-00046 WC 2385 1S","y00046_2.htm"],
    ["> Wohng FW-00049 CC 2004 Pa","y00049_2.htm"],
    ["> Wohng FW-00303 RW 1615 Pa","x00303.htm"],
    ["> Wohng FW-00304 RW 1615 Pa","x00304.htm"],
    ["> Wohng FW-00323 CC 2036 1S","x00323.htm"],
    ["> Wohng FW-00331 RW 1675 Pa","x00331.htm"],
    ["> Wohng FW-00345 OF 2324 1S","x00345.htm"],
    ["> Wohng FW-00358 MF 2370 1S","x00358.htm"],
    ["> Wohng FW-00370 MF 2378 Pa","y00370_2.htm"],
  ],
  ["Wohnen 600-750 m vom Pool:",,
    ["> Wohng FW-00006 CC 2100 Pa","x00006.htm"],
    ["> Wohng FW-00009 AL 2380 Pa","x00009.htm"],
    ["> Wohng FW-00023 AL 2380 Pa","x00023.htm"],
    ["> Wohng FW-00025 MF 2386 1S","y00025_2.htm"],
    ["> Wohng FW-00031 AL 2380 1S","y00031_2.htm"],
    ["> Wohng FW-00032 MF 2381 Pa","y00032_2.htm"],
    ["> Wohng FW-00044 MF 2350 Pa","y00044_2.htm"],
    ["> Wohng FW-00050 MF 2386 Pa","y00050_2.htm"],
    ["> Villa FW-00053 MC 2338 Pa","y00053_2.htm"],
    ["> Wohng FW-00054 MF 2350 1S","y00054_2.htm"],
    ["> Wohng FW-00057 MF 2386 1S","y00057_2.htm"],
    ["> Wohng FW-00059 MF 2360 1S","y00059_2.htm"],
    ["> Wohng FW-00060 MF 2386 Pa","y00060_2.htm"],
    ["> Wohng FW-00061 MF 2373 1S","y00061_2.htm"],
    ["> Wohng FW-00302 CC 2100 1S","x00302.htm"],
    ["> Wohng FW-00376 MF 2386 Pa","y00376_2.htm"],
    ["> Wohng FW-23646 CC 2100 1S","f23646_2.htm"],
    ["> Wohng FW-23648 MF 2389 Pa","f23648_2.htm"],
  ],
  ["Wohnungen mit Außenküche:",,
    ["> Wohng FW-00004 AL 2415 1S","x00004.htm"],
    ["> Wohng FW-00009 AL 2380 Pa","x00009.htm"],
    ["> Wohng FW-00020 CC 2055 Pa","x00020.htm"],
    ["> Wohng FW-00025 MF 2386 1S","y00025_2.htm"],
    ["> Wohng FW-00028 AL 2375 Pa","x00028.htm"],
    ["> Wohng FW-00032 MF 2381 Pa","y00032_2.htm"],
    ["> Wohng FW-00044 MF 2350 1F","y00044_2.htm"],
    ["> Wohng FW-00046 WC 2385 1S","y00046_2.htm"],
    ["> Wohng FW-00050 MF 2386 Pa","y00050_2.htm"],
    ["> Villa FW-00053 MC 2338 Pa","y00053_2.htm"],
    ["> Wohng FW-00060 MF 2386 Pa","y00060_2.htm"],
    ["> Wohng FW-00061 MF 2373 1S","y00061_2.htm"],
    ["> Wohng FW-00323 CC 2036 1S","x00323.htm"],
    ["> Wohng FW-00358 MF 2370 1S","x00358.htm"],
    ["> Wohng FW-00367 CC 1940 1S","y00367_2.htm"],
    ["> Wohng FW-00370 MF 2378 Pa","y00370_2.htm"],
    ["> Wohng FW-00376 MF 2386 Pa","y00376_2.htm"],
    ["> Wohng FW-23644 CC 1908 Pa","f23644_2.htm"],
    ["> Wohng FW-23646 CC 2100 1S","f23646_2.htm"],
  ],
],



["Tennis Club","world_tennis_club_2.htm",
  ["> NAPLES - World Tennis Club","world_tennis_club_2.htm",
  ],
  ["Wohnungen 4 Personen:",,
    ["> Wohng TC-00317 Parterre","x00317.htm"],
    ["> Wohng TC-00320 1. Stock","x00320.htm"],
    ["> Wohng TC-00329 Parterre","x00329.htm"],
    ["> Wohng TC-00366 1. Stock","y00366_2.htm"],
    ["> Wohng TC-00373 1. Stock","y00373_2.htm"],
  ],
  ["Villen ohne Privat-Pool:",,
    ["> Villa TC-00309 6 Pers","x00309.htm"],
    ["> Villa TC-00311 4 Pers","x00311.htm"],
    ["> Villa TC-00365 4 Pers","y00365_2.htm"],
    ["> Villa TC-00375 6 Pers","y00375_2.htm"],
  ],
  ["Villen mit Privat-Pool:",,
    ["> Pool-Villa TC-00335 6 Pers","x00335.htm"],
    ["> Pool-Villa TC-00388 6 Pers","y00388_2.htm"],
  ],
],



["Naples & mehr","naples_2.htm",
  ["> Wohnanlage WINTERPARK","winterpark_2.htm",
  ],
  ["> Wohnanlage FALLING WATERS","falling_waters_2.htm",
  ],
  ["> Wohnanlage WORLD TENNIS CLUB","world_tennis_club_2.htm",
  ],
  ["> Restliches in & um NAPLES:","naples_2.htm",
  ],
  ["NAPLES & NORD-NAPLES:",,
    ["> Pool-Villa IW-00027 6 Pers","x00027.htm"],
    ["> Pool-Villa AR-00101 6 Pers","y00101_2.htm"],
    ["> Pool-Villa AR-00102 10 Pers","y00102_2.htm"],
  ],
  ["Berkshire Lakes:",,
    ["> Apart BE-05197 2 Pers Pa","be5197_2.htm"],
  ],
  ["The Shores:",,
    ["> Pool-Villa SH-14569 6 Pers","s14569_2.htm"],
  ],
  ["Cedar Hammock (Golf):",,
    ["> Wohng CH-00327 4 Pers","x00327.htm"],
  ],
  ["Naples Heritage (Golf):",,
    ["> Wohng NH-00045 4 Pers","y00045_2.htm"],
  ],
  ["Glen Eagle (No Golf):",,
    ["> CHome GL-00378 4 Pers","y00378_2.htm"],
  ],
  ["Blue Heron:",,
    ["> Wohng BH-00040 6 Pers","y00040_2.htm"],
  ],
  ["Lely Resort:",,
    ["> Villa LR-00047 4 Pers","y00047_2.htm"],
  ],
  ["BONITA SPRINGS:",,
    ["> House..... CP-00340 2 Pers","x00340.htm"],
    ["> House..... CP-00339 4 Pers","x00339.htm"],
    ["> House..... CP-00341 6 Pers","x00341.htm"],
  ],
  ["CAPE CORAL:",,
    ["> Pool-Villa CC-00351 6 Pers","y00351_2.htm"],
  ],
  ["MARCO ISLAND:",,
    ["> Apart MI-00051 am Strand!","y00051_2.htm"],
  ],
],





["Service","service_2.htm",
  ["> Service allgemein","service_2.htm"],

  ["> e-Mail an uns","contact_2.htm#email4"],
  ["> Kontakt zu uns","contact_2.htm#contact4"],
  ["> Wir über uns","contact_2.htm#about_us4"],
  ["> Newsletter","contact_2.htm#newsletter4"],

  ["> Referenzen","testimonials_2.htm"],
  ["> Häufig gestellte Fragen","help_2.htm"],
  ["> Lexikon","help_2.htm"],
  ["> Sightseeing","sightseeing_2.htm"],

  ["> Disclaimer","imprint_2.htm#rechtliches4"],
  ["> AGB’s","imprint_2.htm#agb4"],
  ["> Mustervertrag","imprint_2.htm#contract4"],

  ["> Mietpreisliste","http://www.NaplesGolf.org/forr_01x.htm"],
  ["> Site Map","forrent_2.htm"],
],
                 ];



// change menu geometry for non IE browsers
var offset_block_top=0;
var offset_height=0;
if (br != "ie")
{
offset_block_top=0;
offset_height=0;
}

// offset_block_top=8;   urspruenglich oben fuer Non-IE-Browser JP.
// offset_height=-2;

var menu_pos = new Array();
        menu_pos['width']      = [90, 180, 200];
//      menu_pos['width']      = [x3, 170, 170]; vorher 69. Also x2+1.
//      Das ist quasi die Breite eines Menu-Elementes.

        menu_pos['height']     = [20+offset_height, 20+offset_height, 20+offset_height];
//      Das ist quasi die Hoehe des Menu-Blocks.

        menu_pos['top']        = [0, 19, 19];
//      Wert 1 muss Null bleiben. Wert 2 & 3 sollte wie Hoehe sein.

        menu_pos['left']       = [94, 0, 0];
//      menu_pos['left']       = [x2, 0, 0]; vorher 68. Also x3-1.
//      Das ist immer 1 px weniger als die Breite eines Menu-Elementes.

        menu_pos['block_top']  = [126+offset_block_top, 48, 9];
//      menu_pos['block_top']  = [x1+offset_block_top, 19, 9]; vorher 45. Bei HEP 10.
//      1. Wert von dreien: Beginn des Menus der 1. Ebene vom oberen Rand in Pixeln.
//      2. Wert von dreien: Beginn des Menus der 2. Ebene von der 1. Ebene.
//      3. Wert von dreien: Beginn des Menus der 3. Ebene von der 2. Ebene.

        menu_pos['block_left'] = [010, 20, 150];
//      menu_pos['block_left'] = [x98, 20, 150]; vorher 230.
//      Beginn des Menu-Blocks vom linken Rand in Pixeln.

	menu_pos['hide_delay'] = [500, 500, 500];
//	menu_pos['hide_delay'] = [500, 500, 500];
//	Da das gesamte so breit war, habe ich diesen Wert vermindert.
	
var menu_styles = new Array();
	menu_styles['onmouseout'] = [
                'color', ['#ffffff', '#ffffff', '#ffffff'], 
                'background', ['#bbddee', '#bbddee', '#bbddee'],];
	menu_styles['onmouseover'] = [
                'color', ['#ffffff', '#ffffff', '#ffffff'], 
		'background', ['#FFA500', '#FFA500', '#FFA500'],];
        menu_styles['onmousedown'] = [
                'color', ['#ffffff', '#ffffff', '#ffffff'], 
                'background', ['#90EE90', '#90EE90', '#90EE90'],];

if (!((br=="nn")&&(br_ver==4))) {new menu (menu_items, menu_pos, menu_styles);}

// End Menu Processing

