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