$(document).ready(function() {

	/**
	 *	RUN ON PAGE LOAD
	 */

	/* Set up main navigation */
	$("#Nav li:has(ul)").addClass("hasChildren");

	/* Set up booking tooltip */
	$("#Booking table tbody tr td a").tooltip({
		delay: 0,
		showURL: false,
		track: true,
		showBody: ' | ',
		left: -15,
		top: -108,
		fixPNG: true
	});

	$('.info-tip').tooltip({
		delay: 0,
		showURL: false,
		track: true,
		left: -15,
		top: -50,
		fixPNG: true,
		extraClass: 'std'
	});

});
