if (typeof trivagoDestinationRegistry == 'undefined')
{

	var trivagoDestinationRegistry = new function()
	{
		
		this.add = function(id, o)
		{
			this.O[id] = o;
		}
		this.get = function(id, name)
		{
			if (typeof name == 'undefined')
			{
				return this.O[id];
			}
			if (typeof this.O[id] != 'undefined' &&
				typeof this.O[id][name] != 'undefined')
			{
				return this.O[id][name];
			}
			return null;
		}
		this.O = {};
	};

	function trivagoDestinationBuildTabs(id)
	{
		var o = trivagoDestinationRegistry.get(id);
		var np = document.createElement('ul');
		if (o['css'])
		{
			np.style[o['float_attr']] = 'left';
			np.style['padding'] = '0';
			np.style['listStyle'] = 'none';
			np.style['margin'] = '4px 0';
			np.style['width'] = o['width']+'px';
			np.style['borderBottom'] = '1px solid #eeeeee';
		}

		for(var i=0,n=o['tabs'].length;i!=n;i++)
		{
			var nc = document.createElement('li');
			var ncc = document.createElement('a');

			ncc.href = 'javascript:trivagoDestinationSwitchTab(\''+o['id']+'\', \''+o['tabs'][i]+'\');';
			ncc.setAttribute('id', o['prefix']+'_tab_'+o['tabs'][i]);
			ncc.innerHTML = o[o['tabs'][i]]['label'];
			((i == 0) && (ncc.className = 'trivago_destination_tab_active')) || (ncc.className = 'trivago_destination_tab');
			
			if (o['css'])
			{
				nc.style['display'] = ncc.style['display'] = 'block';
				nc.style[o['float_attr']] = ncc.style[o['float_attr']] = 'left';

				ncc.style['margin'] = '4px 4px 0px 4px';
				ncc.style['padding'] = '2px 4px';
				ncc.style['fontFamily'] = o['font'];
				ncc.style['textIndent'] = ncc.style['letterSpacing'] = '0px';
				ncc.style['fontSize'] = '9px';
				ncc.style['border'] = '1px solid #eeeeee';
				if (i == 0)
				{
					ncc.style['textDecoration'] = 'none';
					ncc.style['color'] = '#000000';
				}
				else
				{
					ncc.style['textDecoration'] = 'underline';
					ncc.style['color'] = '#999999';
				}
			}

			nc.appendChild(ncc);
			np.appendChild(nc);
		}
		return np;
	};

	function trivagoDestinationBuildImage(id)
	{
		var o = trivagoDestinationRegistry.get(id);
		var n = document.createElement('div');
		n.setAttribute('id', o['prefix']+'_body_image');
		n.className = o['classPrefix']+'_body_image';
		n.style['display'] = 'none';

		if (o['css'])
		{
			n.style['padding'] = '0';
			n.style['margin'] = '4px';
			n.style['clear'] = 'both';
		}

		var np = document.createElement('a');
		np.className = o['classPrefix']+'_headline';
		np.href = o['image']['headlink'];
		np.target = '_blank';
		np.innerHTML = o['image']['headline'];

		if (o['css'])
		{
			np.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
			np.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');

			np.style['display'] = 'block';
			np.style['overflow'] = 'hidden';
			np.style['padding'] = '0';
			np.style['margin'] = '0 0 8px 0';
			np.style['fontFamily'] = o['font'];
			np.style['fontSize'] = '12px';
			np.style['fontWeight'] = 'bold';
			np.style['textDecoration'] = 'none';
			np.style['textIndent'] = np.style['letterSpacing'] = '0px';
			np.style['color'] = '#000000';
		}

		n.appendChild(np);

		for(var i=0,c=o['image']['items'].length;i!=c;i++)
		{
			var np = document.createElement('div');
			np.setAttribute('id', o['prefix']+'_image_'+o['image']['items'][i]['id']);
			np.style['display'] = (i == 0)?'block':'none';

			var nc1 = document.createElement('div');
			nc1.className = o['classPrefix']+'_image_box';
			var nc1c1 = document.createElement('a');
			nc1c1.className = o['classPrefix']+'_image_link';
			nc1c1.target = '_blank';
			var nc1c2 = document.createElement('a');
			nc1c2.className = o['classPrefix']+'_item_link';
			nc1c2.target = '_blank';
			var nc1c3 = document.createElement('a');
			nc1c3.className = o['classPrefix']+'_path_link';
			nc1c3.target = '_blank';
			var nc1ci = document.createElement('img');

			nc1c1.appendChild(nc1ci);
			nc1.appendChild(nc1c1);
			nc1.appendChild(nc1c2);
			nc1.appendChild(nc1c3);
			
			var nc2 = document.createElement('div');
			nc2.className = o['classPrefix']+'_action_box';
			var nc2c1 = document.createElement('a');
			nc2c1.className = o['classPrefix']+'_action_previous';
			var nc2c2 = document.createElement('a');
			nc2c2.className = o['classPrefix']+'_action_next';

			nc2.appendChild(nc2c1);
			nc2.appendChild(nc2c2);

			nc1c1.href = o['image']['items'][i]['link'];
			nc1c2.href = o['image']['items'][i]['item_link'];
			nc1c2.innerHTML = o['image']['items'][i]['item'];
			nc1c3.href = o['image']['items'][i]['path_link'];
			nc1c3.innerHTML = o['image']['items'][i]['path'];
			nc1ci.src = o['image']['items'][i]['img'];

			nc2c1.href = 'javascript:trivagoDestinationSwitchImage(\''+o['id']+'\', '+o['image']['items'][i]['prev_id']+');'
			nc2c1.innerHTML = o['image']['prev'];
			nc2c2.href = 'javascript:trivagoDestinationSwitchImage(\''+o['id']+'\', '+o['image']['items'][i]['next_id']+');'
			nc2c2.innerHTML = o['image']['next'];

			np.appendChild(nc1);
			np.appendChild(nc2);
			n.appendChild(np);

			if (o['css'])
			{
				nc1c1.style['display'] = nc1c2.style['display'] = nc1c3.style['display'] = nc1ci.style['display'] = 'block';
				nc1c1.style['border'] = nc1c2.style['border'] = nc1c3.style['border'] = nc1ci.style['border'] = '0';
				nc1c1.style['margin'] = nc1c2.style['margin'] = nc1c3.style['margin'] = nc1ci.style['margin'] = '2px auto';
				nc1c1.style['textAlign'] = nc1c2.style['textAlign'] = nc1c3.style['textAlign'] = nc1ci.style['textAlign'] = 'center';

				nc1c1.style['fontFamily'] = nc1c2.style['fontFamily'] = nc1c3.style['fontFamily'] = nc2c1.style['fontFamily'] = nc2c2.style['fontFamily'] = o['font'];
				nc1c1.style['textIndent'] = nc1c1.style['letterSpacing'] = nc1c2.style['textIndent'] = nc1c2.style['letterSpacing'] = nc1c3.style['textIndent'] = nc1c3.style['letterSpacing'] = nc2c1.style['textIndent'] = nc2c1.style['letterSpacing'] = nc2c2.style['textIndent'] = nc2c2.style['letterSpacing'] = '0px';
				nc1c1.style['fontSize'] = nc1c2.style['fontSize'] = nc1c3.style['fontSize'] = nc2c1.style['fontSize'] = nc2c2.style['fontSize'] = '9px';
				
				nc1c1.style['color'] = nc1c2.style['color'] = nc2c1.style['color'] = nc2c2.style['color'] = '#000000';
				nc1c1.style['textDecoration'] = nc1c2.style['textDecoration'] = nc2c1.style['textDecoration'] = nc2c2.style['textDecoration'] = 'underline';

				nc1c3.style['color'] = '#999999';
				nc1c3.style['textDecoration'] = 'none';
				
				nc1.style['border'] = '1px solid #eeeeee';
				nc1.style['margin'] = '2px 8px'; 
				
				nc2c1.style['padding'] = nc2c2.style['padding'] = '0 8px';
				nc2c2.style['borderLeft'] = '1px solid #eeeeee';
				
				nc2.style['textAlign'] = 'center';
			}
		}
		n.appendChild(trivagoDestinationBuildFooter(id, 'image'));
		return n;
	};

	function trivagoDestinationBuildOpinion(id)
	{
		var o = trivagoDestinationRegistry.get(id);
		var n = document.createElement('div');
		n.setAttribute('id', o['prefix']+'_body_opinion');
		n.className = o['classPrefix']+'_body_opinion';
		n.style['display'] = 'none';
	
		if (o['css'])
		{
			n.style['padding'] = '0';
			n.style['margin'] = '4px';
			n.style['clear'] = 'both';
		}

		var np = document.createElement('a');
		np.className = o['classPrefix']+'_headline';
		np.href = o['opinion']['headlink'];
		np.target = '_blank';
		np.innerHTML = o['opinion']['headline'];

		if (o['css'])
		{
			np.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
			np.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');

			np.style['display'] = 'block';
			np.style['overflow'] = 'hidden';
			np.style['padding'] = '0';
			np.style['margin'] = '0 0 8px 0';
			np.style['fontFamily'] = o['font'];
			np.style['fontSize'] = '12px';
			np.style['fontWeight'] = 'bold';
			np.style['textDecoration'] = 'none';
			np.style['textIndent'] = np.style['letterSpacing'] = '0px';
			np.style['color'] = '#000000';
		}

		n.appendChild(np);

		var np = document.createElement('ul');

		if (o['css'])
		{
			np.style['listStyle'] = 'none';
			np.style['padding'] = '0';
			np.style['margin'] = '0';
		}

		n.appendChild(np);

		for(var i=0,c=o['opinion']['items'].length;i!=c;i++)
		{
			var nc = document.createElement('li');
			var nc1 = document.createElement('a');
			nc1.className = o['classPrefix']+'_opinion_item';
			var nc2 = document.createElement('a');
			nc2.className = o['classPrefix']+'_opinion_title';
			var ncc1 = document.createElement('span');

			ncc1.innerHTML = o['opinion']['items'][i]['date'];
			nc1.href = o['opinion']['items'][i]['item_link'];
			nc1.target = '_blank';
			nc1.innerHTML = o['opinion']['items'][i]['item'];
			nc2.href = o['opinion']['items'][i]['link'];
			nc2.target = '_blank';			
			nc2.innerHTML = o['opinion']['items'][i]['title'];

			nc1.insertBefore(ncc1, nc1.firstChild);
			nc.appendChild(nc1);
			nc.appendChild(nc2);
			np.appendChild(nc);

			if (o['css'])
			{
				nc1.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
				nc1.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');

				nc2.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
				nc2.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');
				
				nc1.style['display'] = nc2.style['display'] = 'block';
				nc1.style['overflow'] = nc2.style['overflow'] = 'hidden';
				nc1.style['whiteSpace'] = nc2.style['whiteSpace'] = 'nowrap';
				nc1.style['padding'] = nc2.style['padding'] = '4px 6px';
				nc1.style['color'] = nc2.style['color'] = '#000000';

				nc1.style['fontFamily'] = nc2.style['fontFamily'] = ncc1.style['fontFamily'] = o['font'];
				nc1.style['textIndent'] = nc1.style['letterSpacing'] = nc2.style['textIndent'] = nc2.style['letterSpacing'] = ncc1.style['textIndent'] = ncc1.style['letterSpacing'] = '0px';
				nc1.style['fontSize'] = nc2.style['fontSize'] = ncc1.style['fontSize'] = '12px';
				nc1.style['textDecoration'] = nc2.style['textDecoration'] = ncc1.style['textDecoration'] = 'none';

				nc1.style['backgroundColor'] = '#eeeeee';

				nc2.style['fontStyle'] = 'italic';

				ncc1.style['color'] = '#999999';
				ncc1.style['paddingRight'] = '2px';
			}
		}
		n.appendChild(trivagoDestinationBuildFooter(id, 'opinion'));
		return n;
	};

	function trivagoDestinationBuildFooter(id, tab)
	{
		var o = trivagoDestinationRegistry.get(id);
		
		var n = document.createElement('div');
		n.className = o['classPrefix']+'_footer';
		var np1 = document.createElement('a');
		np1.className = o['classPrefix']+'_action_link';
		var np2 = document.createElement('a');
		np2.className = o['classPrefix']+'_logo_link';
		var npi = document.createElement('img');
		var nc = document.createElement('div');
		
		np1.href = o[tab]['footerlink'];
		np1.target = '_blank';
		np1.innerHTML = o[tab]['footer'];
		np2.href = o['link'];
		np2.target = '_blank';
		npi.src = o['logo'];

		if (o['css'])
		{
			np1.style['display'] = np2.style['display'] = npi.style['display'] = nc.style['display'] = 'block';
			np1.style['margin'] = np2.style['margin'] = npi.style['margin'] = nc.style['margin'] = '0';
			np1.style['padding'] = np2.style['padding'] = npi.style['padding'] = nc.style['padding'] = '0';
			np1.style['overflow'] = np2.style['overflow'] = npi.style['overflow'] = nc.style['overflow'] = 'hidden';
			np1.style['border'] = np2.style['border'] = npi.style['border'] = nc.style['border'] = '0';
			np1.style['fontFamily'] = np2.style['fontFamily'] = npi.style['fontFamily'] = nc.style['fontFamily'] = o['font'];
			np1.style['textIndent'] = np1.style['letterSpacing'] = np2.style['textIndent'] = np2.style['letterSpacing'] = npi.style['textIndent'] = npi.style['letterSpacing'] = nc.style['textIndent'] = nc.style['letterSpacing'] = '0px';
			np1.style['color'] = np2.style['color'] = npi.style['color'] = nc.style['color'] = '#000000';
			np1.style['fontSize'] = np2.style['fontSize'] = npi.style['fontSize'] = nc.style['fontSize'] = '12px';

			np2.style['textDecoration'] = npi.style['textDecoration'] = nc.style['textDecoration'] = 'none';
			
			np1.style['lineHeight'] = '32px';
			np1.style['textDecoration'] = 'underline';
			np1.style[o['float_attr']] = 'left';
			np2.style[o['float_attr']] = 'right';
			
			nc.style['clear'] = 'both';
		}

		np2.appendChild(npi);
		n.appendChild(np1);
		n.appendChild(np2);
		n.appendChild(nc);
		return n;
	};

	function trivagoDestinationElemMouseover(e, id)
	{
		try
		{
			var css = trivagoDestinationRegistry.get(id, 'css');
			css && (e.style['textDecoration'] = 'underline');
		}
		catch(ex)
		{}
	};

	function trivagoDestinationElemMouseout(e, id)
	{
		try
		{
			var css = trivagoDestinationRegistry.get(id, 'css');
			css && (e.style['textDecoration'] = 'none');
		}
		catch(ex)
		{}
	};

	function trivagoDestinationSwitchTab(id, tab)
	{
		var css = trivagoDestinationRegistry.get(id, 'css');
		var tabs = trivagoDestinationRegistry.get(id, 'tabs');
		var prefix = trivagoDestinationRegistry.get(id, 'prefix');
		for(var i=0,n=tabs.length;i!=n;i++)
		{
			var etab = document.getElementById(prefix+'_tab_'+tabs[i]);
			if (tabs[i] == tab)
			{
				etab.className = 'trivago_destination_tab_active';
				if (css)
				{
					etab.style['textDecoration'] = 'none';
					etab.style['color'] = '#000000';
				}
				document.getElementById(prefix+'_body_'+tabs[i]).style['display'] = 'block';				
			}
			else
			{
				etab.className = 'trivago_destination_tab';
				if (css)
				{
					etab.style['textDecoration'] = 'underline';
					etab.style['color'] = '#999999';
				}
				document.getElementById(prefix+'_body_'+tabs[i]).style['display'] = 'none';
			}
		}
	};

	function trivagoDestinationSwitchImage(id, image)
	{
		var img = trivagoDestinationRegistry.get(id, 'image');
		var prefix = trivagoDestinationRegistry.get(id, 'prefix');
		for(var i=0,n=img['items'].length;i!=n;i++)
		{
			if (img['items'][i]['id'] == image)
			{
				document.getElementById(prefix+'_image_'+img['items'][i]['id']).style['display'] = 'block';				
			}
			else
			{
				document.getElementById(prefix+'_image_'+img['items'][i]['id']).style['display'] = 'none';
			}
		}
	};

};if (typeof trivagoDestinationHotel == 'undefined')
{

	function trivagoDestinationHotel(o)
	{
		var container = (o['prefix'])?document.getElementById(o['prefix']):null;
		var chtml;
		var reglink = new RegExp(o['val']['link']);
		
		if (container && (chtml = container.innerHTML) && reglink.test(chtml))
		{
			o['font'] = 'Univers,Arial,Helvetica,Sans,Sans-Serif';
			o['tabs'] = ['toplist', 'image', 'opinion'];
			o['classPrefix'] = 'trivago_destination_hotel';

			// set css
			if (o['css'])
			{
				container.style['display'] = 'block';
				container.style['fontFamily'] = o['font'];
				container.style['backgroundColor'] = '#ffffff';
				container.style['border'] = '1px solid #eeeeee';
				container.style['width'] = o['width']+'px';
				container.style['overflow'] = 'hidden';
				container.style['margin'] = container.style['padding'] = '0';
			
				var childs = container.getElementsByTagName('a');
				for(var i=0,n=childs.length;i!=n;i++)
				{
					childs[i].style['display'] = 'block';
					childs[i].style['textIndent'] = childs[i].style['letterSpacing'] = '0px';
					childs[i].style['textDecoration'] = 'none';
					childs[i].style['fontFamily'] = o['font'];
					childs[i].style['fontWeight'] = 'bold';
					childs[i].style['fontSize'] = '15px';
					childs[i].style['color'] = '#000000';
					childs[i].style['margin'] = '6px 4px 2px 4px';
					childs[i].target = '_blank';
				}

				if (typeof(container.style.cssFloat) != 'undefined')
				{
					o['float_attr'] = 'cssFloat';
				}
				else if (typeof(container.style.styleFloat) != 'undefined')
				{
					o['float_attr'] = 'styleFloat';
				}
				else
				{
					o['float_attr'] = 'none';
				}
			}

			container.className = o['classPrefix'];
			
			// store in registry
			trivagoDestinationRegistry.add(o['id'], o);
		
			// tabs
			container.appendChild(trivagoDestinationBuildTabs(o['id']));

			// toplist
			container.appendChild(trivagoDestinationBuildHotelToplist(o['id']));

			// image
			container.appendChild(trivagoDestinationBuildImage(o['id']));

			// opinion
			container.appendChild(trivagoDestinationBuildOpinion(o['id']));

		}
		else
		{
			alert(o['val']['msg']);
		}
	
	};

	function trivagoDestinationBuildHotelToplist(id)
	{
		var o = trivagoDestinationRegistry.get(id);
		var n = document.createElement('div');
		n.setAttribute('id', o['prefix']+'_body_toplist');
		n.className = o['classPrefix']+'_body_toplist';
		n.style['display'] = 'block';

		if (o['css'])
		{
			n.style['padding'] = '0';
			n.style['margin'] = '4px';
			n.style['clear'] = 'both';
		}
		
		var np = document.createElement('a');
		np.className = o['classPrefix']+'_headline';
		np.href = o['toplist']['headlink'];
		np.target = '_blank';
		np.innerHTML = o['toplist']['headline'];

		if (o['css'])
		{
			np.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
			np.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');

			np.style['display'] = 'block';
			np.style['overflow'] = 'hidden';
			np.style['padding'] = '0';
			np.style['margin'] = '0 0 8px 0';
			np.style['fontFamily'] = o['font'];
			np.style['fontSize'] = '12px';
			np.style['fontWeight'] = 'bold';
			np.style['textDecoration'] = 'none';
			np.style['textIndent'] = np.style['letterSpacing'] = '0px';
			np.style['color'] = '#000000';
		}

		n.appendChild(np);

		var np = document.createElement('ul');

		if (o['css'])
		{
			np.style['listStyle'] = 'none';
			np.style['padding'] = '0';
			np.style['margin'] = '0';
		}
		
		n.appendChild(np);

		for(var i=0,c=o['toplist']['items'].length;i!=c;i++)
		{
			var nc = document.createElement('li');
			var ncc = document.createElement('a');
			var ncci = document.createElement('img');
			var ncc1 = document.createElement('span');
			ncc1.className = o['classPrefix']+'_position';
			var ncc2 = document.createElement('span');
			ncc2.className = o['classPrefix']+'_group';
			var ncc3 = document.createElement('span');
			ncc3.className = o['classPrefix']+'_name';
			var ncc2i = document.createElement('img');

			ncc.href = o['toplist']['items'][i]['link'];
			ncc.target = '_blank';
			ncci.src = o['toplist']['items'][i]['img'];
			ncc1.innerHTML = i+1;
			ncc2.innerHTML = o['toplist']['items'][i]['group'];
			ncc3.innerHTML = o['toplist']['items'][i]['name'];
			ncc2i.src = o['toplist']['items'][i]['stars'];

			ncc2.appendChild(ncc2i);
			ncc.appendChild(ncc1);
			ncc.appendChild(ncci);
			ncc.appendChild(ncc2);
			ncc.appendChild(ncc3);
			nc.appendChild(ncc);
			np.appendChild(nc);

			if (o['css'])
			{
				ncc3.setAttribute('onmouseover', 'trivagoDestinationElemMouseover(this, \''+o['id']+'\');');
				ncc3.setAttribute('onmouseout', 'trivagoDestinationElemMouseout(this, \''+o['id']+'\');');

				ncc.style['display'] = ncc1.style['display'] = ncci.style['display'] = ncc2.style['display'] = ncc3.style['display'] = 'block';

				ncc.style['textDecoration'] = ncc1.style['textDecoration'] = ncci.style['textDecoration'] = ncc2.style['textDecoration'] = ncc3.style['textDecoration'] = ncc2i.style['textDecoration'] = 'none';
				ncc.style['border'] = ncc1.style['border'] = ncci.style['border'] = ncc2.style['border'] = ncc3.style['border'] = ncc2i.style['border'] = '0';
				ncc1.style['fontFamily'] = ncc2.style['fontFamily'] = ncc3.style['fontFamily'] = ncc2i.style['fontFamily'] = o['font'];
				ncc1.style['textIndent'] = ncc1.style['letterSpacing'] = ncc2.style['textIndent'] = ncc2.style['letterSpacing'] = ncc3.style['textIndent'] = ncc3.style['letterSpacing'] = ncc2i.style['textIndent'] = ncc2i.style['letterSpacing'] = '0px';

				ncc1.style['backgroundColor'] = '#cccccc';
				ncc1.style['lineHeight'] = '40px';
				ncc1.style['color'] = '#ffffff';
				ncc1.style['fontWeight'] = 'bold';
				ncc1.style['padding'] = '0 2px';

				ncc1.style['margin'] = ncci.style['margin'] = '0 4px 0 0';
				ncc1.style[o['float_attr']] = ncci.style[o['float_attr']] = 'left';
				
				ncci.style['width'] = ncci.style['height'] = '40px';
				
				ncc2.style['fontSize'] = '9px';
				ncc2.style['color'] = '#999999';

				ncc2i.style['display'] = 'inline';
				ncc2i.style['margin'] = '2px 0 -2px 2px';
				
				ncc3.style['fontSize'] = '12px';
				ncc3.style['color'] = '#000000';

				nc.style['height'] = ncc.style['height'] = ncc1.style['height'] = '40px';
				nc.style['clear'] = ncc.style['clear'] = 'both';

				nc.style['padding'] = ncc.style['padding'] = '0';

				ncc.style['margin'] = '4px 0';
				
				nc.style['margin'] = '0';
				nc.style['listStyle'] = 'none';
			}
		}
		n.appendChild(trivagoDestinationBuildFooter(id, 'toplist'));
		return n;
	};

};if (typeof currentOnload == 'undefined')
{
var currentOnload = Array();
(window.onload) && currentOnload.push(window.onload);
}
currentOnload.push(function(){trivagoDestinationHotel({"id":"37870_1","prefix":"trivago_destination_hotel_37870_1","css":false,"width":240,"logo":"http:\/\/il1.trivago.com\/images\/layoutimages\/company_logo_small_t.png","link":"http:\/\/www.trivago.co.uk","val":{"msg":"Invalid widget","link":"(\\'|\\\")http:\\\/\\\/www.trivago.co.uk\\\/([0-9A-Za-z\\%\\-\\.]*)\\-37870(\\'|\\\"|#|\\\/)"},"image":{"label":"Photos","headline":"Most recent travel photos","headlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/pictures","footer":"Upload photo","footerlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/pictures#pictures","prev":"previous image","next":"next image","items":[{"id":"8350855","item":"St Peter's & All Saints","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/st-peter-s---all-saints-870861","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/st-peter-s---all-saints-870861\/picture-i8350855","img":"http:\/\/imgll.trivago.com\/uploadimages\/83\/50\/8350855_mx.jpeg","prev_id":"7584129","next_id":"8246121"},{"id":"8246121","item":"The Royal Centre","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/the-royal-centre-888541","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/the-royal-centre-888541\/picture-i8246121","img":"http:\/\/imgll.trivago.com\/uploadimages\/82\/46\/8246121_mx.jpeg","prev_id":"8350855","next_id":"8246111"},{"id":"8246111","item":"Ye olde trip to Jerusalem","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233\/picture-i8246111","img":"http:\/\/imgll.trivago.com\/uploadimages\/82\/46\/8246111_mx.jpeg","prev_id":"8246121","next_id":"8246097"},{"id":"8246097","item":"Ye olde trip to Jerusalem","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233\/picture-i8246097","img":"http:\/\/imgll.trivago.com\/uploadimages\/82\/46\/8246097_mx.jpeg","prev_id":"8246111","next_id":"8246095"},{"id":"8246095","item":"Ye olde trip to Jerusalem","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233\/picture-i8246095","img":"http:\/\/imgll.trivago.com\/uploadimages\/82\/46\/8246095_mx.jpeg","prev_id":"8246097","next_id":"8178379"},{"id":"8178379","item":"Wollaton Hall and Park","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/wollaton-hall-and-park-98402","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/wollaton-hall-and-park-98402\/picture-i8178379","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/78\/8178379_mx.jpeg","prev_id":"8246095","next_id":"7672835"},{"id":"7672835","item":"Nottingham Castle","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/nottingham-castle-137460","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/nottingham-castle-137460\/picture-i7672835","img":"http:\/\/imgll.trivago.com\/uploadimages\/76\/72\/7672835_mx.jpeg","prev_id":"8178379","next_id":"7602839"},{"id":"7602839","item":"Nottingham Castle","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/nottingham-castle-137460","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/nottingham-castle-137460\/picture-i7602839","img":"http:\/\/imgll.trivago.com\/uploadimages\/76\/02\/7602839_mx.jpeg","prev_id":"7672835","next_id":"7584145"},{"id":"7584145","item":"St Barnabas Cathedral","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/st-barnabas-cathedral-870856","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/st-barnabas-cathedral-870856\/picture-i7584145","img":"http:\/\/imgll.trivago.com\/uploadimages\/75\/84\/7584145_mx.jpeg","prev_id":"7602839","next_id":"7584129"},{"id":"7584129","item":"Ye olde trip to Jerusalem","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233","path":"Nottingham","path_link":"http:\/\/www.trivago.co.uk\/nottingham-37870","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/ye-olde-trip-to-jerusalem-135233\/picture-i7584129","img":"http:\/\/imgll.trivago.com\/uploadimages\/75\/84\/7584129_mx.jpeg","prev_id":"7584145","next_id":"8350855"}]},"opinion":{"label":"Reviews","headline":"Recent reviews","headlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/reviews","footer":"Add a travel or hotel review","footerlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/reviews#rate","items":[{"id":"663103","item":"Village Nottingham","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/village-nottingham-47389","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/village-nottingham-47389\/review-o663103","title":"\"Spacious, clean and comfortable\"","date":"12\/2010"},{"id":"555711","item":"Novotel Nottingham East Midlands","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/novotel-nottingham-east-midlands-46611","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/novotel-nottingham-east-midlands-46611\/review-o555711","title":"\"Useful location close to M1 motorway\"","date":"07\/2010"},{"id":"170306","item":"Restaurant Sat Bains with rooms","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/restaurant-sat-bains-with-rooms-629451","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/restaurant-sat-bains-with-rooms-629451\/review-o170306","title":"\"Good food, poor service\"","date":"04\/2008"},{"id":"25338","item":"Welbeck","item_link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/welbeck-46464","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/welbeck-46464\/review-o25338","title":"\"The Welbeck Hotel, Nottingham\"","date":"05\/2007"}]},"toplist":{"label":"Hotels","headline":"The best hotels in Nottingham ","headlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel","footer":"Rate a hotel","footerlink":"http:\/\/www.trivago.co.uk\/nottingham-37870\/reviews#rate","items":[{"name":"The Nottingham Belfry","group":"Hotel","stars":"http:\/\/il2.trivago.com\/images\/ratingimages\/star4.gif","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/the-nottingham-belfry-149632","img":"http:\/\/imgll.trivago.com\/itemimages\/14\/96\/149632_v4_msq.jpeg"},{"name":"Days Hotel Nottingham","group":"Hotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star2.gif","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/days-hotel-nottingham-149623","img":"http:\/\/imgll.trivago.com\/itemimages\/14\/96\/149623_v2_msq.jpeg"},{"name":"Jurys Inn Nottingham","group":"Hotel","stars":"http:\/\/il2.trivago.com\/images\/ratingimages\/star3.gif","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/jurys-inn-nottingham-47605","img":"http:\/\/imgll.trivago.com\/itemimages\/47\/60\/47605_v4_msq.jpeg"},{"name":"Premier Apartments Nottingham","group":"Aparthotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star0.gif","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/premier-apartments-nottingham-149629","img":"http:\/\/imgll.trivago.com\/itemimages\/14\/96\/149629_v3_msq.jpeg"},{"name":"New Gables","group":"Hotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star0.gif","link":"http:\/\/www.trivago.co.uk\/nottingham-37870\/hotel\/new-gables-1357468","img":"http:\/\/imgll.trivago.com\/itemimages\/13\/57\/1357468_v4_msq.jpeg"}]}});});
window.onload = function() { while(doOnload = currentOnload.pop()) { doOnload(); } };


