$(document).ready(function(){var a="Enter a name or email";var b="#777";if($("#people_search").val().length<1){$("#people_search").val(a);$("#people_search").css({color:b})}$("#people_search").focus(function(){if(this.value==a){this.value="";$(this).css({color:"black"})}});$("#people_search").blur(function(){if(this.value.length<1){this.value=a;$(this).css({color:b})}})});
