jQuery(document).ready(function() 
{
		jQuery("#enquiry_no a").simpletip(
		{
			content: "This unique number is your own personal enquiry number. Quoting your enquiry number when calling NCL allows us to find your cruise as quickly as possible.",
			fixed: true,
			position: 'top'
		}); 
		jQuery("a.latitudes_link").simpletip(
			{
				content: "Latitudes is NCL's loyalty programme for past guests. You receive automatic and complimentary enrolment once you complete your first NCL cruise and access to a range of special benefits."
			}
		);
});

jQuery(document).ready(function($)
{
	$("div#enquiry_form form").bind("submit",function(){
			
		if ($("input#first_name").val() == '')
		{
			alert("Please enter your first name");
			return false;
		}
		
		if ($("input#last_name").val() == '')
		{
			alert("Please enter your last name");
			return false;
		}
		
		if (! $("input#email").val().match(/@.*?\./) )
		{
			alert("Please enter a valid email address");
			return false;
		}
		
		var phone = $("input#phone").val().replace(/\D/,'');
		if (! phone.match(/\d{10,}/) )
		{
			alert("Please enter a valid phone number");
			return false;
		}
		
		if ($("textarea#message").val() == '' )
		{
			alert("Please enter a valid message");
			return false;
		}
	});
});

