$(document).ready(function(){

  // SEARCH FORM REMOVE/REPLACE
  $("#subscribe-form .text").focus(function(){
    if (this.value=='email address'){
      this.value='';
    }
  }).blur(function(){
    if (this.value==''){
      this.value='email address';
    }
  });
  
  // TEXTAREA SELECT ALL
  $("#embed textarea").click(
 function()
 {
  this.focus();
  this.select();
 }
)

});