jQuery(document).ready(function(){
				jQuery("input#searcharea")
					 .bind("focus", function(){
					if ((this).value=="поиск по сайту"){
					this.value="";
					}
					}
					).bind("blur", function(){
					if ((this).value==""){
					this.value="поиск по сайту";
					}
					}
					);
					});
