$(document).ready(
	function() {
		$("#cnt-search-results table .col-journey-type .more").hover( 
			function(){
				$(this).find(".list-bubble").fadeIn("fast");
			},
			function(){
				$(this).find(".list-bubble").fadeOut(150);
			}
		);
		
		$("#cnt-message .close").click(function(){
			$("#cnt-message").remove();
			return false;
		});
				
		createOneLineBubbles("#cnt-search-results table .col-hotel-data h3", {selector: "a", attribute: "title"});
		createOneLineBubbles("#cnt-search-results table .col-hotel-data .offer-icons .ico", {selector: "img", attribute: "alt"}, "#big-bubble");
		
		createBigBubbles("#cnt-search-results table .col-hotel-data .offer-icons .ico", {selector: "img", attribute: "alt"}, ".one-line-bubble");
	}
);

