function clear(){ $("#content").empty(); }

function displayHotels(pLabel, pStars, pImg, pDesc, pURL, pURLBook, pPrice){
	var stars = "";
	for(var i = 0; i< pStars; i++) stars += "*";
	
	$("#content").append('<div class="hotelDesc"><div class="hotelDescImg"><a href="' + pURL + '" target="_blank"><img src="' + pImg + '" alt="' + pLabel + '" title="' + pLabel + '" /></a></div><div class="hotelDescText"><h2>' + pLabel + ' ' + stars + '</h2><p>' + pDesc + ' <a href="' + pURL + '" target="_blank">{+}&nbsp;more&nbsp;information</a></p></div><div class="price">From: <span>' + pPrice + ' &euro;</span>&nbsp;<a href="' + pURLBook + '" target="_blank"><img class="bookimg" src="/img/static/book.png" alt="Book" /></a></div></div>');
	
	// book button
	$(".bookimg").hover(
		function(){
			$(this).attr("src", "/img/static/book-over.png");
		}, function(){
			$(this).attr("src", "/img/static/book.png");
		}
	);
	
	$("#content > .hotelDesc").css("border-bottom", "#999 dotted 2px").filter(":last").css("border-bottom", "none");
}