$(document).ready(function(){
	//=========== username ================
	$('.inputblur').focus(function () {
		if ($(this).val() == $(this).attr("title")) {
			$(this).val("");
		}
	}).blur(function () {
		if ($(this).val() == "") {
			$(this).val($(this).attr("title"));
		}
	});
});

function checkFirstName(field, rules, i, options){
      if (field.val() == "") {
         // this allows the use of i18 for the error msgs
         return options.allrules.validateFirstName.alertText;
      }
    }

function checkSurname(field, rules, i, options){
      if (field.val() == "Surname...") {
         // this allows the use of i18 for the error msgs
         return options.allrules.Surname.alertText;
      }
    }

