// 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 = [


["All rentals","forrent_1.htm",
  ["> All rentals (overview)","forrent_1.htm",
  ],
  ["Condominiums sleeps 1-2:",,
    ["> Apart MI-00051 at the beach","y00051_1.htm"],
    ["> Apart BE-05197 private pool","be5197_1.htm"],
  ],
  ["Condominiums sleeps 1-4 a:",,
    ["> Condo WP-02573 2nd floor","y02573_1.htm"],
    ["> Condo WP-02634 1st floor","y02634_1.htm"],
    ["> Condo WP-06232 2nd floor","wp6232_1.htm"],
    ["> Condo WP-13963 2nd floor","w13963_1.htm"],
    ["> Condo WP-00151 1st floor","x00151.htm"],
    ["> Condo WP-00153 1st floor","x00153.htm"],
    ["> Condo WP-00154 1st floor","y00154_1.htm"],
    ["> Condo WP-00156 1st floor","y00156_1.htm"],
    ["> Condo WP-00157 1st floor","y00157_1.htm"],
    ["> Condo WP-00158 1st floor","y00158_1.htm"],
    ["> Condo WP-00159 2nd floor","y00159_1.htm"],
    ["> Condo WP-00324 2nd floor","y00324_1.htm"],
    ["> Condo WP-00336 2nd floor","x00336.htm"],
    ["> Condo TC-00317 1st floor","x00317.htm"],
  ],
  ["Condominiums sleeps 1-4 b:",,
    ["> Condo TC-00320 2nd floor","x00320.htm"],
    ["> Condo TC-00329 1st floor","x00329.htm"],
    ["> Condo TC-00366 2nd floor","y00366_1.htm"],
    ["> Condo TC-00373 2nd floor","y00373_1.htm"],
    ["> Condo TC-00374 2nd floor","y00374_1.htm"],
    ["> Condo BH-00040 3rd floor","y00040_1.htm"],
    ["> Condo NH-00045 1st floor","y00045_1.htm"],
    ["> Townh SP-00334 1+2 floor","x00334.htm"],
    ["> CHome GL-00378 1st floor","y00378_1.htm"],
    ["> Apart MI-00051 at the beach","y00051_1.htm"],
  ],
  ["Condominiums sleeps 1-4 FW1a",,
    ["> Condo FW-00004 AL 2415 2F","x00004.htm"],
    ["> Condo FW-00005 MF 2345 1F","x00005.htm"],
    ["> Condo FW-00006 CC 2100 1F","x00006.htm"],
    ["> Condo FW-00009 AL 2380 1F","x00009.htm"],
    ["> Condo FW-00014 RW 1655 1F","x00014.htm"],
    ["> Condo FW-00015 RW 1655 1F","x00015.htm"],
    ["> Condo FW-00016 OF 2274 1F","x00016.htm"],
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-00023 AL 2380 1F","x00023.htm"],
    ["> Condo FW-00025 MF 2386 2F","y00025_1.htm"],
    ["> Condo FW-00028 AL 2375 1F","x00028.htm"],
    ["> Condo FW-00031 AL 2380 2F","y00031_1.htm"],
    ["> Condo FW-00032 MF 2381 1F","y00032_1.htm"],
  ],
  ["Condominiums sleeps 1-4 FW1b",,
    ["> Condo FW-00041 RW 1615 1F","y00041_1.htm"],
    ["> Condo FW-00044 MF 2350 1F","y00044_1.htm"],
    ["> Condo FW-00046 WC 2385 2F","y00046_1.htm"],
    ["> Condo FW-00048 JC 2225 1F","y00048_1.htm"],
    ["> Condo FW-00049 CC 2004 1F","y00049_1.htm"],
    ["> Condo FW-00050 MF 2386 1F","y00050_1.htm"],
    ["> Villa FW-00053 MC 2338 1F","y00053_1.htm"],
    ["> Condo FW-00054 MF 2350 2F","y00054_1.htm"],
    ["> Condo FW-00055 RW 1665 2F","y00055_1.htm"],
    ["> Condo FW-00056 RW 1655 2F","y00056_1.htm"],
    ["> Condo FW-00057 MF 2386 2F","y00057_1.htm"],
    ["> Condo FW-00059 MF 2360 2F","y00059_1.htm"],
    ["> Condo FW-00060 MF 2386 1F","y00060_1.htm"],
    ["> Condo FW-00061 MF 2373 2F","y00061_1.htm"],
  ],
  ["Condominiums sleeps 1-4 FW2a",,
    ["> Condo FW-00301 OF 2420 1F","y00301_1.htm"],
    ["> Condo FW-00302 CC 2100 2F","x00302.htm"],
    ["> Condo FW-00303 RW 1615 1F","x00303.htm"],
    ["> Condo FW-00304 RW 1615 1F","x00304.htm"],
    ["> Condo FW-00323 CC 2036 2F","x00323.htm"],
    ["> Condo FW-00331 RW 1675 1F","x00331.htm"],
    ["> Condo FW-00345 OF 2324 2F","x00345.htm"],
    ["> Condo FW-00353 OF 2274 2F","x00353.htm"],
    ["> Condo FW-00355 RW 1660 2F","y00355_1.htm"],
    ["> Condo FW-00358 MF 2370 2F","x00358.htm"],
    ["> Condo FW-00367 CC 1940 2F","y00367_1.htm"],
  ],
  ["Condominiums sleeps 1-4 FW2b",,
    ["> Condo FW-00370 MF 2378 1F","y00370_1.htm"],
    ["> Condo FW-00376 MF 2386 1F","y00376_1.htm"],
    ["> Condo FW-10480 RW 1645 1F","f10480_1.htm"],
    ["> Condo FW-10481 CC 2004 2F","f10481_1.htm"],
    ["> Condo FW-23644 CC 1908 1F","f23644_1.htm"],
    ["> Condo FW-23646 CC 2100 2F","f23646_1.htm"],
    ["> Condo FW-23647 JC 2285 2F","y23647_1.htm"],
    ["> Condo FW-23648 MF 2389 1F","f23648_1.htm"],
    ["> Condo FW-25034 OF 2372 2F","f25034_1.htm"],
    ["> Condo FW-46509 OF 2372 2F","f46509_1.htm"],
  ],
  ["Condominiums sleeps 5:",,
    ["> Condo WP-02573 2nd floor","y02573_1.htm"],
    ["> Condo WP-00153 1st floor","x00153.htm"],
    ["> Condo FW-00005 MF 2345 1F","x00005.htm"],
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-00031 AL 2380 2F","y00031_1.htm"],
    ["> Condo FW-00049 CC 2004 1F","y00049_1.htm"],
    ["> Villa FW-00053 MC 2338 1F","y00053_1.htm"],
    ["> Condo FW-00055 RW 1665 2F","y00055_1.htm"],
    ["> Condo FW-00061 MF 2373 2F","y00061_1.htm"],
    ["> Condo FW-00358 MF 2370 2F","x00358.htm"],
    ["> Condo FW-23647 JC 2285 2F","y23647_1.htm"],
    ["> Condo FW-23648 MF 2389 1F","f23648_1.htm"],
    ["> Condo BH-00040 3rd floor","y00040_1.htm"],
    ["> Townh SP-00334 1+2 floor","x00334.htm"],
  ],
  ["Condominiums sleeps 6:",,
    ["> Condo WP-00153 1st floor","x00153.htm"],
    ["> Condo FW-00005 MF 2345 1F","x00005.htm"],
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-00031 AL 2380 2F","y00031_1.htm"],
    ["> Condo FW-00049 CC 2004 1F","y00049_1.htm"],
    ["> Condo FW-00055 RW 1665 2F","y00055_1.htm"],
    ["> Condo FW-00061 MF 2373 2F","y00061_1.htm"],
    ["> Condo FW-00358 MF 2370 2F","x00358.htm"],
    ["> Condo FW-23647 JC 2285 2F","y23647_1.htm"],
    ["> Condo FW-23648 MF 2389 1F","f23648_1.htm"],
    ["> Condo BH-00040 3rd floor","y00040_1.htm"],
    ["> Townh SP-00334 1+2 floor","x00334.htm"],
  ],
  ["Condominiums sleeps 7:",,
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-23648 MF 2389 1F","f23648_1.htm"],
  ],
  ["Condominiums sleeps 8:",,
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
  ],
  ["Villas w/o private pool:",,
    ["> Naples: LR-00047 sleeps 4","y00047_1.htm"],
    ["> Naples: TC-00309 sleeps 6","x00309.htm"],
    ["> Naples: TC-00311 sleeps 4","x00311.htm"],
    ["> Naples: TC-00313 sleeps 4","y00313_1.htm"],
    ["> Naples: TC-00365 sleeps 4","y00365_1.htm"],
    ["> Naples: TC-00375 sleeps 6","y00375_1.htm"],
    ["> Bonita: CP-00339 sleeps 4","x00339.htm"],
    ["> Bonita: CP-00340 sleeps 2","x00340.htm"],
    ["> Bonita: CP-00341 sleeps 6","x00341.htm"],
  ],
  ["Villas with private pool:",,
    ["> Naples: IW-00027 sleeps 6","x00027.htm"],
    ["> Naples: AR-00101 sleeps 6","y00101_1.htm"],
    ["> Naples: AR-00102 sleeps 10","y00102_1.htm"],
    ["> Naples: TC-00335 sleeps 6","x00335.htm"],
    ["> Cape-C: CC-00351 sleeps 6","y00351_1.htm"],
    ["> Naples: TC-00388 sleeps 6","y00388_1.htm"],
    ["> Naples: BE-05197 sleeps 2","be5197_1.htm"],
    ["> Naples: SH-14569 sleeps 6","s14569_1.htm"],
  ],
],



["Winterpark","winterpark_1.htm",
  ["> NAPLES - Winterpark","winterpark_1.htm",
  ],
  ["Condominiums at the pool:",,
    ["> Condo WP-00151 sleeps 4 1F","x00151.htm"],
    ["> Condo WP-00336 sleeps 4 2F","x00336.htm"],
    ["> Condo WP-06232 sleeps 4 2F","wp6232_1.htm"],
  ],
  ["Condominiums near pool:",,
    ["> Condo WP-00154 sleeps 4 1F","y00154_1.htm"],
    ["> Condo WP-00158 sleeps 4 1F","y00158_1.htm"],
    ["> Condo WP-00159 sleeps 4 2F","y00159_1.htm"],
    ["> Condo WP-00324 sleeps 4 2F","y00324_1.htm"],
    ["> Condo WP-00380 sleeps 4 1F","y00380_1.htm"],
    ["> Condo WP-02573 sleeps 5 2F","y02573_1.htm"],
    ["> Condo WP-02634 sleeps 4 1F","y02634_1.htm"],
  ],
  ["Condominiums footway to pool:",,
    ["> Condo WP-00153 sleeps 6 1F","x00153.htm"],
    ["> Condo WP-00156 sleeps 4 1F","y00156_1.htm"],
    ["> Condo WP-00157 sleeps 4 1F","y00157_1.htm"],
    ["> Condo WP-13963 sleeps 4 2F","w13963_1.htm"],
  ],
  ["Condominiums with lanai:",,
    ["> Condo WP-00153 sleeps 6 1F","x00153.htm"],
    ["> Condo WP-00154 sleeps 4 1F","y00154_1.htm"],
    ["> Condo WP-00157 sleeps 4 1F","y00157_1.htm"],
    ["> Condo WP-00159 sleeps 4 2F","y00159_1.htm"],
    ["> Condo WP-00336 sleeps 4 2F","x00336.htm"],
    ["> Condo WP-02573 sleeps 5 2F","y02573_1.htm"],
    ["> Condo WP-06232 sleeps 4 2F","wp6232_1.htm"],
    ["> Condo WP-13963 sleeps 4 2F","w13963_1.htm"],
  ],
],



["Falling Waters","falling_waters_1.htm",
  ["> NAPLES - Falling Waters","falling_waters_1.htm",
  ],
  ["Condos 0135-0945 ft to pool:",,
    ["> Condo FW-00014 RW 1655 1F","x00014.htm"],
    ["> Condo FW-00015 RW 1655 1F","x00015.htm"],
    ["> Condo FW-00016 OF 2274 1F","x00016.htm"],
    ["> Condo FW-00048 JC 2225 1F","y00048_1.htm"],
    ["> Condo FW-00055 RW 1665 2F","y00055_1.htm"],
    ["> Condo FW-00056 RW 1655 2F","y00056_1.htm"],
    ["> Condo FW-00301 OF 2420 1F","y00301_1.htm"],
    ["> Condo FW-00353 OF 2274 2F","x00353.htm"],
    ["> Condo FW-00355 RW 1660 2F","y00355_1.htm"],
    ["> Condo FW-00367 CC 1940 2F","y00367_1.htm"],
    ["> Condo FW-10480 RW 1645 1F","f10480_1.htm"],
    ["> Condo FW-10481 CC 2004 2F","f10481_1.htm"],
    ["> Condo FW-23644 CC 1908 1F","f23644_1.htm"],
    ["> Condo FW-23647 JC 2285 2F","y23647_1.htm"],
    ["> Condo FW-25034 OF 2372 2F","f25034_1.htm"],
    ["> Condo FW-46509 OF 2372 2F","f46509_1.htm"],
  ],
  ["Condos 0945-1620 ft to pool:",,
    ["> Condo FW-00004 AL 2415 2F","x00004.htm"],
    ["> Condo FW-00005 MF 2345 1F","x00005.htm"],
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-00028 AL 2375 1F","x00028.htm"],
    ["> Condo FW-00041 RW 1615 1F","y00041_1.htm"],
    ["> Condo FW-00046 WC 2385 2F","y00046_1.htm"],
    ["> Condo FW-00049 CC 2004 1F","y00049_1.htm"],
    ["> Condo FW-00303 RW 1615 1F","x00303.htm"],
    ["> Condo FW-00304 RW 1615 1F","x00304.htm"],
    ["> Condo FW-00323 CC 2036 2F","x00323.htm"],
    ["> Condo FW-00331 RW 1675 1F","x00331.htm"],
    ["> Condo FW-00345 OF 2324 2F","x00345.htm"],
    ["> Condo FW-00358 MF 2370 2F","x00358.htm"],
    ["> Condo FW-00370 MF 2378 1F","y00370_1.htm"],
  ],
  ["Condos 1620-2100 ft to pool:",,
    ["> Condo FW-00006 CC 2100 1F","x00006.htm"],
    ["> Condo FW-00009 AL 2380 1F","x00009.htm"],
    ["> Condo FW-00023 AL 2380 1F","x00023.htm"],
    ["> Condo FW-00025 MF 2386 2F","y00025_1.htm"],
    ["> Condo FW-00031 AL 2380 2F","y00031_1.htm"],
    ["> Condo FW-00032 MF 2381 1F","y00032_1.htm"],
    ["> Condo FW-00044 MF 2350 1F","y00044_1.htm"],
    ["> Condo FW-00050 MF 2386 1F","y00050_1.htm"],
    ["> Villa FW-00053 MC 2338 1F","y00053_1.htm"],
    ["> Condo FW-00054 MF 2350 2F","y00054_1.htm"],
    ["> Condo FW-00057 MF 2386 2F","y00057_1.htm"],
    ["> Condo FW-00059 MF 2360 2F","y00059_1.htm"],
    ["> Condo FW-00060 MF 2386 1F","y00060_1.htm"],
    ["> Condo FW-00061 MF 2373 2F","y00061_1.htm"],
    ["> Condo FW-00302 CC 2100 2F","x00302.htm"],
    ["> Condo FW-00376 MF 2386 1F","y00376_1.htm"],
    ["> Condo FW-23646 CC 2100 2F","f23646_1.htm"],
    ["> Condo FW-23648 MF 2389 1F","f23648_1.htm"],
  ],
  ["Condos with summer kitchen:",,
    ["> Condo FW-00004 AL 2415 2F","x00004.htm"],
    ["> Condo FW-00009 AL 2380 1F","x00009.htm"],
    ["> Condo FW-00020 CC 2055 1F","x00020.htm"],
    ["> Condo FW-00025 MF 2386 2F","y00025_1.htm"],
    ["> Condo FW-00028 AL 2375 1F","x00028.htm"],
    ["> Condo FW-00032 MF 2381 1F","y00032_1.htm"],
    ["> Condo FW-00044 MF 2350 1F","y00044_1.htm"],
    ["> Condo FW-00046 WC 2385 2F","y00046_1.htm"],
    ["> Condo FW-00050 MF 2386 1F","y00050_1.htm"],
    ["> Villa FW-00053 MC 2338 1F","y00053_1.htm"],
    ["> Condo FW-00060 MF 2386 1F","y00060_1.htm"],
    ["> Condo FW-00061 MF 2373 2F","y00061_1.htm"],
    ["> Condo FW-00323 CC 2036 2F","x00323.htm"],
    ["> Condo FW-00358 MF 2370 2F","x00358.htm"],
    ["> Condo FW-00367 CC 1940 2F","y00367_1.htm"],
    ["> Condo FW-00370 MF 2378 1F","y00370_1.htm"],
    ["> Condo FW-00376 MF 2386 1F","y00376_1.htm"],
    ["> Condo FW-23644 CC 1908 1F","f23644_1.htm"],
    ["> Condo FW-23646 CC 2100 2F","f23646_1.htm"],
  ],
],



["Tennis Club","world_tennis_club_1.htm",
  ["> NAPLES - World Tennis Club","world_tennis_club_1.htm",
  ],
  ["Condominiums sleeps 4:",,
    ["> Condo TC-00317 1st floor","x00317.htm"],
    ["> Condo TC-00320 2nd floor","x00320.htm"],
    ["> Condo TC-00329 1st floor","x00329.htm"],
    ["> Condo TC-00366 2nd floor","y00366_1.htm"],
    ["> Condo TC-00373 2nd floor","y00373_1.htm"],
  ],
  ["Villas w/o private pool:",,
    ["> Villa TC-00309 sleeps 6","x00309.htm"],
    ["> Villa TC-00311 sleeps 4","x00311.htm"],
    ["> Villa TC-00365 sleeps 4","y00365_1.htm"],
    ["> Villa TC-00375 sleeps 6","y00375_1.htm"],
  ],
  ["Villas with private pool:",,
    ["> Pool Villa TC-00335 sleeps 6","x00335.htm"],
    ["> Pool Villa TC-00388 sleeps 6","y00388_1.htm"],
  ],
],



["Naples & more","naples_1.htm",
  ["> Community Winterpark","winterpark_1.htm",
  ],
  ["> Community Falling Waters","falling_waters_1.htm",
  ],
  ["> Community World Tennis Club","world_tennis_club_1.htm",
  ],
  ["> More Rentals in & around NAPLES:","naples_1.htm",
  ],
  ["NAPLES & NAPLES NORTH:",,
    ["> Pool-Villa IW-00027 sleeps 6","x00027.htm"],
    ["> Pool-Villa AR-00101 sleeps 6","y00101_1.htm"],
    ["> Pool-Villa AR-00102 sleeps 10","y00102_1.htm"],
  ],
  ["Berkshire Lakes:",,
    ["> Apart BE-05197 sleeps 2 1F","be5197_1.htm"],
  ],
  ["The Shores:",,
    ["> Pool-Villa SH-14569 sleeps 6","s14569_1.htm"],
  ],
  ["Cedar Hammock (Golf):",,
    ["> Condo CH-00327 sleeps 4","x00327.htm"],
  ],
  ["Naples Heritage (Golf):",,
    ["> Condo NH-00045 sleeps 4","y00045_1.htm"],
  ],
  ["Glen Eagle (No Golf):",,
    ["> CHome GL-00378 sleeps 4","y00378_1.htm"],
  ],
  ["Blue Heron:",,
    ["> Condo BH-00040 sleeps 6","y00040_1.htm"],
  ],
  ["Lely Resort:",,
    ["> Villa LR-00047 sleeps 4","y00047_1.htm"],
  ],
  ["BONITA SPRINGS:",,
    ["> House..... CP-00340 sleeps 2","x00340.htm"],
    ["> House..... CP-00339 sleeps 4","x00339.htm"],
    ["> House..... CP-00341 sleeps 6","x00341.htm"],
  ],
  ["CAPE CORAL:",,
    ["> Pool-Villa CC-00351 sleeps 6","y00351_1.htm"],
  ],
  ["MARCO ISLAND:",,
    ["> Apart MI-00051 at the beach","y00051_1.htm"],
  ],
],





["Service","service_1.htm",
  ["> Service (general)","service_1.htm"],

  ["> e-Mail us","contact_1.htm#email4"],
  ["> Contact us","contact_1.htm#contact4"],
  ["> All about us","contact_1.htm#about_us4"],
  ["> Newsletter","contact_1.htm#newsletter4"],

  ["> Testimonials","testimonials_1.htm"],
  ["> FAQ's","help_1.htm"],
  ["> Lexicon","help_1.htm"],
  ["> Sightseeing","sightseeing_1.htm"],

  ["> Disclaimer","imprint_1.htm#rechtliches4"],
  ["> Terms of business","imprint_1.htm#agb4"],
  ["> Sample contract","imprint_1.htm#contract4"],

  ["> Rental fees","http://www.NaplesGolf.org/forr_01x.htm"],
  ["> Site Map","forrent_1.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

