$ec(function(){
		$ec("textarea").each(function(){
			$ec(this).data("defaultVal", $ec(this).attr("value"))
			.focus(function(){
				if($ec(this).attr("value") === $ec(this).data("defaultVal")){
					$ec(this).attr("value", "") 
				}
			})
			.blur(function(){
				if($ec(this).attr("value") === "") {
					$ec(this).attr("value", $ec(this).data("defaultVal"));
				}
			})
		});
});


