function showBigImage(imgsrc,name,city) {
	if(!bigImage){
		d = document.createElement('div');
		idAttr = document.createAttribute('id');
		idAttr.nodeValue = 'bigImageWrapper';
		d.setAttributeNode(idAttr);
		document.getElementsByTagName("body")[0].appendChild(d);
	}
	bigImage = $('bigImageWrapper');
	d.innerHTML = '<h3 class="tx_hotelportal_pi2-title">' + name + '</h3>' + city + '<br /><img src="' + imgsrc + '" id="bigImage" />';
	bigImage.style.position = 'absolute';
	bigImage.style.left = (x + 20) + "px";
	bigImage.style.top 	= (y) + "px";
	//bigImage.style.height 	= (240) + "px";
	bigImage.style.display = "block";
	//alert(" x: "  + x + " y: " + y + "Scroll: " + document.body.scrollTop);
}

function hideImage(){
	bigImage.style.display = "none";
}

function showImg(imgSrc){
	$('tx-pnmmouseovergallery-pi1_imagePoster').src = imgSrc;
}