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":"38950_1","prefix":"trivago_destination_hotel_38950_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\\%\\-\\.]*)\\-38950(\\'|\\\"|#|\\\/)"},"image":{"label":"Photos","headline":"Most recent travel photos","headlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/pictures","footer":"Upload photo","footerlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/pictures#pictures","prev":"previous image","next":"next image","items":[{"id":"8154029","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154029","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154029_mx.jpeg","prev_id":"8150789","next_id":"8154027"},{"id":"8154027","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154027","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154027_mx.jpeg","prev_id":"8154029","next_id":"8154025"},{"id":"8154025","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154025","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154025_mx.jpeg","prev_id":"8154027","next_id":"8154023"},{"id":"8154023","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154023","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154023_mx.jpeg","prev_id":"8154025","next_id":"8154021"},{"id":"8154021","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154021","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154021_mx.jpeg","prev_id":"8154023","next_id":"8154019"},{"id":"8154019","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154019","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154019_mx.jpeg","prev_id":"8154021","next_id":"8154017"},{"id":"8154017","item":"The Beatles Story","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/the-beatles-story-98614\/picture-i8154017","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/54\/8154017_mx.jpeg","prev_id":"8154019","next_id":"8150819"},{"id":"8150819","item":"Knowsley Safari Park","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203\/picture-i8150819","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/50\/8150819_mx.jpeg","prev_id":"8154017","next_id":"8150813"},{"id":"8150813","item":"Knowsley Safari Park","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203\/picture-i8150813","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/50\/8150813_mx.jpeg","prev_id":"8150819","next_id":"8150789"},{"id":"8150789","item":"Knowsley Safari Park","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203","path":"Liverpool","path_link":"http:\/\/www.trivago.co.uk\/liverpool-38950","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/knowsley-safari-park-137203\/picture-i8150789","img":"http:\/\/imgll.trivago.com\/uploadimages\/81\/50\/8150789_mx.jpeg","prev_id":"8150813","next_id":"8154029"}]},"opinion":{"label":"Reviews","headline":"Recent reviews","headlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/reviews","footer":"Add a travel or hotel review","footerlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/reviews#rate","items":[{"id":"788645","item":"Staybridge Suites Liverpool","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/staybridge-suites-liverpool-933215","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/staybridge-suites-liverpool-933215\/review-o788645","title":"\"perfection!\"","date":"05\/2011"},{"id":"772849","item":"Malmaison Liverpool","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/malmaison-liverpool-152873","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/malmaison-liverpool-152873\/review-o772849","title":"\"excellent\"","date":"05\/2011"},{"id":"646491","item":"Beetham Tower Deluxe Apartment","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/beetham-tower-deluxe-apartment-845526","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/beetham-tower-deluxe-apartment-845526\/review-o646491","title":"\"unsatisfying\"","date":"11\/2010"},{"id":"620477","item":"Signature Living Serviced Apartment","item_link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/signature-living-serviced-apartment-1353534","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/signature-living-serviced-apartment-1353534\/review-o620477","title":"\"perfect stay in liverpool\"","date":"10\/2010"}]},"toplist":{"label":"Hotels","headline":"The best hotels in Liverpool ","headlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel","footer":"Rate a hotel","footerlink":"http:\/\/www.trivago.co.uk\/liverpool-38950\/reviews#rate","items":[{"name":"BridgeStreet at Liverpool ONE","group":"Aparthotel","stars":"http:\/\/il2.trivago.com\/images\/ratingimages\/star4.gif","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/bridgestreet-at-liverpool-one-1311719","img":"http:\/\/imgll.trivago.com\/itemimages\/13\/11\/1311719_v1_msq.jpeg"},{"name":"Posh Pads At The Casartelli","group":"Hotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star0.gif","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/posh-pads-at-the-casartelli-915131","img":"http:\/\/imgll.trivago.com\/itemimages\/91\/51\/915131_msq.jpeg"},{"name":"Staybridge Suites Liverpool","group":"Aparthotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star0.gif","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/staybridge-suites-liverpool-933215","img":"http:\/\/imgll.trivago.com\/itemimages\/93\/32\/933215_v1_msq.jpeg"},{"name":"Premier Apartments Liverpool","group":"Aparthotel","stars":"http:\/\/il1.trivago.com\/images\/ratingimages\/star0.gif","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/premier-apartments-liverpool-152874","img":"http:\/\/imgll.trivago.com\/itemimages\/15\/28\/152874_v1_msq.jpeg"},{"name":"Hampton By Hilton Liverpool City Centre","group":"Hotel","stars":"http:\/\/il2.trivago.com\/images\/ratingimages\/star3.gif","link":"http:\/\/www.trivago.co.uk\/liverpool-38950\/hotel\/hampton-by-hilton-liverpool-city-centre-1384141","img":"http:\/\/imgll.trivago.com\/itemimages\/13\/84\/1384141_v3_msq.jpeg"}]}});});
window.onload = function() { while(doOnload = currentOnload.pop()) { doOnload(); } };


