/* 
 * Activates the hover on the travel landing page
 */
$(document).ready(function()
{
	$("div.right table td.hover").tooltip({
		track: true,
		showURL: false,
		bodyHandler: function() {
			var html = $(this).children('p').html();
			return html;
		}
	});

	
});

