jQuery.noConflict();

jQuery(document).ready(function() {
   
    //search box
    jQuery(".contactform").focus(
     function() {
         // only select if the text has not changed
         if (this.value == this.defaultValue) {
             this.select();
         }
     })

     jQuery(".contactform").blur(
     function() {
         // only select if the text has not changed
         if (this.value == "") {
             this.value = this.defaultValue
         }

     })
     
   });
