$(document).ready(function(){


if($('#yourName').val() == ""){
  $('#yourName').val('Your name...');
}
$('#yourName').clearField();


if($('#location').val() == ""){
  $('#location').val('Your location...');
}
$('#location').clearField();


if($('#interest').val() == ""){
  $('#interest').val('Interest in 2morro...');
}
$('#interest').clearField();


if($('#email').val() == ""){
  $('#email').val('Email address...');
}
$('#email').clearField();


if($('#telephone').val() == ""){
  $('#telephone').val('Contact tel...');
}

$('#telephone').clearField();


$('#contactForm label').hide();


});
