// onclick inputbox clear

$(document).ready(function(){

 $('#contact-container').focus(function(){
  if(this.value=='Your name')
  {
  this.value=' '
  }
 });

});
