/*
Html templates. Use string concatenation instead of newline literals:
http://google-styleguide.googlecode.com/svn/trunk/javascriptguide.xml?showone=Multiline_string_literals#Multiline_string_literals
*/
MapApp.TEMPLATE_SETTINGS = {
	monumenten: {
		app: {
			form: '<form id="searchForm" class="search">' +
	'	<fieldset class="searchFieldset">' +
	'		<input type="text" class="form-input searchInput" id="address" value="" size="15" />' +
	'			<input class="form-reset" type="button" name="or"  value="" />' +
	'			<input class="form-submit" type="submit" name="op" value="" />' +
	'		</fieldset>' +
	'</form>' + 
	'<div class="lbButtonSet">' + 
	'	<button class="lbButton lbButtonLeft filterView"><span class="lbButtonIcon"></span><span class="lbButtonLabel">Kaartopties</span></button><button class="lbButton lbButtonRight addressView"><span class="lbButtonIcon"></span><span class="lbButtonLabel">Locaties in beeld</span></button>' + 
	'<div class="clear"></div>' +
	'</div>',
			placeholder: 'Zoek adres of monumentnummer',
			placeholder_short: 'Zoek monument'
		},
		address: {
			view: '<div class="panelContents">' + 
		'<h3 class="title">Locaties in beeld</h3>' + 
		'<div class="loader"></div>' + 
		'<div class="intro"></div>' + 
		'<ul class="list"></ul>' + 
	'</div>',
			listItem: '<li><a href="#" id="monument<%=ID%>" class="navigate hyphenate" data-latlng="<%=LATLNG%>" data-id="<%=ID%>"><%=ADDRESS%></a></li>',
			listItemNameAddress: '<span><%=NAME%></span>, <%=ADDRESS%>',
			object: 'monument',
			objects: 'monumenten',
			introObjectsFound: '<p class="count"><%=COUNT%> <%=MONUMENTS%></p><p><button class="lbButton lbButtonSmall filterView filterButton">Resultaten verfijnen</button></p>',
			introObjectsNotFound: '<p>Geen monumenten in beeld.<br />Versleep de kaart of pas de kaartopties aan.</p><p><button class="lbButton lbButtonSmall filterView filterButton">Kaartopties</button></p>'
		},
		map: {
			balloon: '<div class="infoWindow <%=CLASS_IS_HIGH%>"><h2><%=ADDRESS%><span><%=DESCRIPTION%></span></h2><div class="imageRow"></div><%=LINKS%></div>',
			balloonNameAddress: '<%=NAME%>, <%=ADDRESS%>',
			balloonDescriptionRijks: 'Rijksmonument <%=ID%>',
			balloonTitleGemeentelijk: 'Gemeentelijk monument',
			balloonLinks: '<ul class="links"><%=ZOOM_LINK%><%=STREETVIEW_LINK%><%=DETAIL_LINK%></ul>',
			balloonLinkZoom: '<li class="<%=IS_LAST%>"><a href="#" class="zoomMap" data-latlng="<%=LATLNG%>">Zoom</a></li>',
			balloonLinkStreetView: '<li class="<%=IS_LAST%>"><a href="#" class="streetview disabled" data-latlng="<%=LATLNG%>">Streetview</a></li>',
			balloonLinkDetail: '<li class="<%=IS_LAST%>"><a href="<%=URL%>">Monumentpagina</a></li>'
		},
		filter: {
			view: '<div class="panelContents">' + 
	'	<h3>Kaartopties</h3>' + 
	'	<div class="list">' + 
	'		<fieldset class="category group">' + 
	'			<legend><span class="hyphenate">Toon categorie:</span></legend>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="0" checked="checked" class="groupfilter nofilter"><span class="hyphenate">Alle</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="200" class="groupfilter" /><span class="hyphenate">Verdedigingswerken, militaire gebouwen</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="201" /><span class="hyphenate">Bomvrij militair object</span></label>' + 
	'					<label><input type="radio" name="category" value="202" /><span class="hyphenate">Militair verblijfsgebouw</span></label>' + 
	'					<label><input type="radio" name="category" value="203" /><span class="hyphenate">Militair wachtgebouw</span></label>' + 
	'					<label><input type="radio" name="category" value="204" /><span class="hyphenate">Militaire opslagplaats</span></label>' + 
	'					<label><input type="radio" name="category" value="205" /><span class="hyphenate">Omwalling</span></label>' + 
	'					<label><input type="radio" name="category" value="206" /><span class="hyphenate">Gracht</span></label>' + 
	'					<label><input type="radio" name="category" value="207" /><span class="hyphenate">Fort, vesting en vestingonderdeel</span></label>' + 
	'					<label><input type="radio" name="category" value="208" /><span class="hyphenate">Versperring</span></label>' + 
	'					<label><input type="radio" name="category" value="209" /><span class="hyphenate">Open verdedigingswerk</span></label>' + 
	'					<label><input type="radio" name="category" value="210" /><span class="hyphenate">Kazemat</span></label>' + 
	'					<label><input type="radio" name="category" value="211" /><span class="hyphenate">Waarnemingspost</span></label>' + 
	'					<label><input type="radio" name="category" value="212" /><span class="hyphenate">Voorwerk</span></label>' + 
	'					<label><input type="radio" name="category" value="213" /><span class="hyphenate">Bijgebouwen</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="300" class="groupfilter" /><span class="hyphenate">Weg- en waterbouwkundige werken</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="301" /><span class="hyphenate">Aanlegvoorziening</span></label>' + 
	'					<label><input type="radio" name="category" value="302" /><span class="hyphenate">Bedieningsgebouw</span></label>' + 
	'					<label><input type="radio" name="category" value="303" /><span class="hyphenate">Brug</span></label>' + 
	'					<label><input type="radio" name="category" value="304" /><span class="hyphenate">Kust- en oevermarkering</span></label>' + 
	'					<label><input type="radio" name="category" value="305" /><span class="hyphenate">Scheepshulpmiddel</span></label>' + 
	'					<label><input type="radio" name="category" value="306" /><span class="hyphenate">Waterkering en -doorlaat</span></label>' + 
	'					<label><input type="radio" name="category" value="307" /><span class="hyphenate">Waterweg, werf en haven</span></label>' + 
	'					<label><input type="radio" name="category" value="308" /><span class="hyphenate">Weg</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="400" class="groupfilter" /><span class="hyphenate">Voorwerpen op pleinen e.d.</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="401" /><span class="hyphenate">Erfscheiding</span></label>' + 
	'					<label><input type="radio" name="category" value="402" /><span class="hyphenate">Grensafbakening</span></label>' + 
	'					<label><input type="radio" name="category" value="403" /><span class="hyphenate">Straatmeubilair</span></label>' + 
	'					<label><input type="radio" name="category" value="404" /><span class="hyphenate">Stoep</span></label>' + 
	'					<label><input type="radio" name="category" value="405" /><span class="hyphenate">Verkeersobject</span></label>' + 
	'					<label><input type="radio" name="category" value="406" /><span class="hyphenate">Gedenkteken</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="500" class="groupfilter" /><span class="hyphenate">Bestuur, rechtsgebouwen, overheidsgebouwen</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="501" /><span class="hyphenate">Bestuursgebouw en onderdelen</span></label>' + 
	'					<label><input type="radio" name="category" value="502" /><span class="hyphenate">Overheidsgebouw</span></label>' + 
	'					<label><input type="radio" name="category" value="503" /><span class="hyphenate">Gerechtsgebouw</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="600" class="groupfilter" /><span class="hyphenate">Religieuze gebouwen</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="601" /><span class="hyphenate">Kapel en onderdelen</span></label>' + 
	'					<label><input type="radio" name="category" value="602" /><span class="hyphenate">Kerk en kerkonderdeel</span></label>' + 
	'					<label><input type="radio" name="category" value="603" /><span class="hyphenate">Onderdelen kerk</span></label>' + 
	'					<label><input type="radio" name="category" value="604" /><span class="hyphenate">Kerkelijke dienstwoning</span></label>' + 
	'					<label><input type="radio" name="category" value="605" /><span class="hyphenate">Klooster,  kloosteronderdeel</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="700" class="groupfilter" /><span class="hyphenate">Handel, kantoren, opslag, transport</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="701" /><span class="hyphenate">Handel en kantoor</span></label>' + 
	'					<label><input type="radio" name="category" value="702" /><span class="hyphenate">Winkel</span></label>' + 
	'					<label><input type="radio" name="category" value="703" /><span class="hyphenate">Transport</span></label>' + 
	'					<label><input type="radio" name="category" value="704" /><span class="hyphenate">Opslag</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="800" class="groupfilter" /><span class="hyphenate">Uitvaartcentra en begraafplaatsen</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="801" /><span class="hyphenate">Begraafplaats en -onderdelen</span></label>' + 
	'					<label><input type="radio" name="category" value="802" /><span class="hyphenate">Crematorium</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="900" class="groupfilter" /><span class="hyphenate">Cultuur, gezondheidszorg, wetenschap</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="901" /><span class="hyphenate">Welzijn, kunst en cultuur</span></label>' + 
	'					<label><input type="radio" name="category" value="902" /><span class="hyphenate">Onderwijs en wetenschap</span></label>' + 
	'					<label><input type="radio" name="category" value="903" /><span class="hyphenate">Gezondheidszorg</span></label>' + 
	'					<label><input type="radio" name="category" value="904" /><span class="hyphenate">Sociale zorg, liefdadigheid</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="1000" class="groupfilter" /><span class="hyphenate">Sport, recreatie, horeca, e.d.</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="1001" /><span class="hyphenate">Sport en recreatie</span></label>' + 
	'					<label><input type="radio" name="category" value="1002" /><span class="hyphenate">Dierenverblijf</span></label>' + 
	'					<label><input type="radio" name="category" value="1003" /><span class="hyphenate">Horeca</span></label>' + 
	'					<label><input type="radio" name="category" value="1004" /><span class="hyphenate">Vergadering en vereniging</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="1100" class="groupfilter" /><span class="hyphenate">Woningen en woningbouwcomplexen</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="1101" /><span class="hyphenate">Appartementengebouw</span></label>' + 
	'					<label><input type="radio" name="category" value="1103" /><span class="hyphenate">Bijzondere woonvorm</span></label>' + 
	'					<label><input type="radio" name="category" value="1104" /><span class="hyphenate">Dienstwoning</span></label>' + 
	'					<label><input type="radio" name="category" value="1105" /><span class="hyphenate">Bedrijfswoning, fabriekswoning</span></label>' + 
	'					<label><input type="radio" name="category" value="1106" /><span class="hyphenate">Werk- en woonhuis</span></label>' + 
	'					<label><input type="radio" name="category" value="1107" /><span class="hyphenate">Woonhuis</span></label>' + 
	'					<label><input type="radio" name="category" value="1108" /><span class="hyphenate">Onderdeel woningen e.d.</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="1200" class="groupfilter" /><span class="hyphenate">Kastelen, landhuizen, parken e.d.</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="1201" /><span class="hyphenate">Kasteel, buitenplaats</span></label>' + 
	'					<label><input type="radio" name="category" value="1202" /><span class="hyphenate">Tuin, park en plantsoen</span></label>' + 
	'					<label><input type="radio" name="category" value="1203" /><span class="hyphenate">Bijgebouwen kastelen e.d.</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="1300" class="groupfilter" /><span class="hyphenate">Boerderij, molen, bedrijf</span></label>' + 
	'				<fieldset class="grouped">' + 
	'					<label><input type="radio" name="category" value="1301" /><span class="hyphenate">Boerderij</span></label>' + 
	'					<label><input type="radio" name="category" value="1302" /><span class="hyphenate">Industrie- en poldermolen</span></label>' + 
	'					<label><input type="radio" name="category" value="1303" /><span class="hyphenate">Gemaal</span></label>' + 
	'					<label><input type="radio" name="category" value="1304" /><span class="hyphenate">Industrie</span></label>' + 
	'					<label><input type="radio" name="category" value="1305" /><span class="hyphenate">Nutsbedrijf</span></label>' + 
	'					<label><input type="radio" name="category" value="1306" /><span class="hyphenate">Nijverheid</span></label>' + 
	'				</fieldset>' + 
	'			</fieldset>' + 
	'		</fieldset>' + 
	'	</div>' + 
	'</div>'
		}
	},
	bedrijven: {
			app: {
			form: '<form id="searchForm" class="search">' +
	'	<fieldset class="searchFieldset">' +
	'		<input type="text" class="form-input searchInput" id="address" value="" size="15" />' +
	'			<input class="form-reset" type="button" name="or"  value="" />' +
	'			<input class="form-submit" type="submit" name="op" value="" />' +
	'		</fieldset>' +
	'</form>' + 
	'<div class="lbButtonSet">' + 
	'	<button class="lbButton lbButtonLeft filterView"><span class="lbButtonIcon"></span><span class="lbButtonLabel">Kaartopties</span></button><button class="lbButton lbButtonRight addressView"><span class="lbButtonIcon"></span><span class="lbButtonLabel">Bedrijven in beeld</span></button>' + 
	'<div class="clear"></div>' +
	'</div>',
			placeholder: 'Zoek plaatsnaam',
			placeholder_short: 'Zoek plaatsnaam'
		},
		address: {
			view: '<div class="panelContents">' + 
		'<h3 class="title">Bedrijven in beeld</h3>' + 
		'<div class="loader"></div>' + 
		'<div class="intro"></div>' + 
		'<ul class="list"></ul>' + 
	'</div>',
			listItem: '<li><a href="#" id="monument<%=ID%>" class="navigate hyphenate" data-latlng="<%=LATLNG%>" data-id="<%=ID%>"><%=ADDRESS%></a></li>',
			listItemNameAddress: '<span><%=NAME%></span>, <%=ADDRESS%>',
			object: 'bedrijf',
			objects: 'bedrijven',
			introObjectsFound: '<p class="count"><%=COUNT%> <%=MONUMENTS%></p><p><button class="lbButton lbButtonSmall filterView filterButton">Resultaten verfijnen</button></p>',
			introObjectsNotFound: '<p>Geen bedrijven in beeld.<br />Versleep de kaart of pas de kaartopties aan.</p><p><button class="lbButton lbButtonSmall filterView filterButton">Kaartopties</button></p>'
		},
		map: {
			balloon: '<div class="infoWindow"><h2><%=NAME%><span><%=DESCRIPTION%></span></h2><%=LINKS%></div>',
			balloonNameAddress: '<%=NAME%>',
			balloonDescriptionRijks: '<%=ADDRESS%>',
			balloonTitleGemeentelijk: 'Gemeentelijk monument',
			balloonLinks: '<ul class="links"><%=ZOOM_LINK%><%=STREETVIEW_LINK%></ul>',
			balloonLinkZoom: '<li class="<%=IS_LAST%>"><a href="#" class="zoomMap" data-latlng="<%=LATLNG%>">Zoom</a></li>',
			balloonLinkStreetView: '<li class="<%=IS_LAST%>"><a href="#" class="streetview disabled" data-latlng="<%=LATLNG%>">Streetview</a></li>'
		},	
		filter: {
			view: '<div class="panelContents">' + 
	'	<h3>Kaartopties</h3>' + 
	'	<div class="list">' + 
	'		<fieldset class="category group">' + 
	'			<legend><span class="hyphenate">Toon categorie:</span></legend>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="0" checked="checked" class="groupfilter nofilter"><span class="hyphenate">Alle</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="19" class="groupfilter" /><span class="hyphenate">Aannemers</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="35" class="groupfilter" /><span class="hyphenate">Adviesbureau</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="20" class="groupfilter" /><span class="hyphenate">Architecten</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="39" class="groupfilter" /><span class="hyphenate">Bouwhistorisch onderzoek</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="21" class="groupfilter" /><span class="hyphenate">Bouwmaterialen</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="22" class="groupfilter" /><span class="hyphenate">Dakdekkers</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="28" class="groupfilter" /><span class="hyphenate">Fundering en sondering</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="29" class="groupfilter" /><span class="hyphenate">Gevels</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="23" class="groupfilter" /><span class="hyphenate">Glas in lood/ Glazeniers</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="31" class="groupfilter" /><span class="hyphenate">Hout</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="32" class="groupfilter" /><span class="hyphenate">Leidekkers</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="36" class="groupfilter" /><span class="hyphenate">Makelaars</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="24" class="groupfilter" /><span class="hyphenate">Monumentenwacht</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="25" class="groupfilter" /><span class="hyphenate">Ongediertebestrijding</span></label>' + 
	'			</fieldset>' + 
	
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="30" class="groupfilter" /><span class="hyphenate">Schilders</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="33" class="groupfilter" /><span class="hyphenate">Smeedwerk/ Hang- en Sluitwerk</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="26" class="groupfilter" /><span class="hyphenate">Stucadoors</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="34" class="groupfilter" /><span class="hyphenate">Tegels</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="38" class="groupfilter" /><span class="hyphenate">Timmerwerk</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="27" class="groupfilter" /><span class="hyphenate">Vochtbeheersing en isolatie</span></label>' + 
	'			</fieldset>' + 
	'			<fieldset>' + 
	'				<label><input type="radio" name="category" value="37" class="groupfilter" /><span class="hyphenate">Voegwerken</span></label>' + 
	'			</fieldset>' + 
	'		</fieldset>' + 
	'	</div>' + 
	'</div>'
		}
	}
};	
MapApp.TEMPLATE_SETTINGS.demo = MapApp.TEMPLATE_SETTINGS.monumenten;



