	
	childs = Array( );
	titles = Array( );
	infos = Array( );
	images = Array( );
	cities = Array( );
	urls = Array( );
	url_targets = Array( );
	
	function info( id ) {
		str = '<b>'+cities[id]+'</b><br />';
		if( typeof images[id] != 'undefined' ) str = str + '<img class="gis-img" src="'+images[id]+'/125xq" width="125" align="right">';
		str = str + infos[id];
		overlib( str, CAPTION, titles[id], VAUTO );
	}
	
	function more( id ) {
		if( childs[id] ) {
			overview( id );
		} else info( id );
	}
	
	function overview( id ) {
		html = '<table border="0" cellspacing="0" cellpadding="2">';
		showchilds = Array( );
		showchilds[showchilds.length] = id;
		for( i = 0; i < childs[id].length; i++ ) {
			showchilds[i+1] = childs[id][i];
		}
		for( i = 0; i < showchilds.length; i++ ) {
			cid = showchilds[i];
			html = html + '<tr><td colspan="2" style="padding-top: 5px" class="gis"><a href="'+config_base+urls[cid]+'" '+(url_targets[cid]?'target="'+url_targets[cid]+'"':'')+'><b>'+titles[cid]+'</b></a></td></tr><tr>';
			if( typeof images[cid] != 'undefined' ) html = html + '<td valign="top">'+typeof images[cid]+'<img src="'+images[cid]+'/90xq" width="90" /></td>';
			html = html + '<td valign="top"><b>'+cities[cid]+'</b><br />'+infos[cid]+'</td></tr>';
		}
		html = html + '</table>';
		overlib( html, CAPTION, _gis_hint_multiple_hotels, STICKY, OFFSETX, 0, OFFSETY, 5, VAUTO );
	}