$(function(){
		   
  function inivalues(obj) {
	
	 var t = $(obj).val();
	
	 if ($(obj).length) {
		
	   $(obj).focusin(function () {
		 if ($(this).val() == t) {
		   $(this).val("");
		     $(this).css({"color":"#222", "font-style":"normal" });
		 }
       });
	  
	   $(obj).focusout(function () {
		 if (($(this).val() == "") || ($(this).val() == t)) {
		   $(this).css({"color":"#999", "font-style":"italic" });
		   $(this).val(t);
		 }
       });
	 }
  }
	
  inivalues("#searcharea .field");
  
});
