$(document).ready(function() {
	$('#title').qtip(
	   {
	      content: "Select your title from the drop-down menu.",
		  style: 'regTip'
	   });
	$('#fname').qtip(
	   {
		   content: 'When entering your first name, you can only use letters, hyphens, apostrophes or spaces',

		   style: 'regTip'
	   });
	$('#surname').qtip(
	   {
		   content: 'When entering your last name, you can only use letters, hyphens, apostrophes or spaces ',

		   style: 'regTip'
	   });
	$('#birth_day_val').qtip(
	   {
		   content: 'You must be 18 or over to play at SuperCasino',
		   style: 'regTip'
	   });
	$('#birth_month_val').qtip(
	   {
		   content: 'You must be 18 or over to play at SuperCasino',
		   style: 'regTip'
	   });
	$('#birth_year_val').qtip(
	   {
		   content: 'You must be 18 or over to play at SuperCasino',
		   style: 'regTip'
	   });		
	$('#pa_postcode').qtip(
	   {
		   content: 'Tell us your post code of where you live',
		   style: 'regTip'
	   });
	
	$('#address').qtip(
			   {
				   content: 'We need your address to process the registration.',
				   style: 'regTip'
			   });
	
	$('#city').qtip(
			   {
				   content: 'We need to know your town to process the registration.',
				   style: 'regTip'
			   });
	
	$('#county').qtip(
			   {
				   content: 'We need to know your county to process the registration.',
				   style: 'regTip'
			   });	
	
	$('#phone').qtip(
	   {
		   content: 'We need a number to contact you with information about your account',
		   style: 'regTip'
	   });
	$('#mobile').qtip(
	   {
		   content: 'We need a number to contact you with information about your account',
		   style: 'regTip'
	   });
	$('#email').qtip(
	   {
		   content: 'We need your email address to contact you with information about your account',
		   style: 'regTip'
	   });
	$('#emailconfirmation').qtip(
	   {
		   content: 'This field needs to match the e-mail address field',
		   style: 'regTip'
	   });
});