(function($){
	/**
	 * Fancy label focus/blur on text input
	 * @return elem
	 **/
	$.fn.labelBlur = function(options) {
		var $this = this,
		settings = $.extend( {
			textLabel : $("label[for='" + $this.attr('id') + "']").text()
		}, options || {});
		$this
			.val(settings.textLabel)
			.focus(function() {
				if ($this.val() === settings.textLabel) {
					$this.val("");
				}
			})
			.blur(function() {
				if ($this.val() === "") {
					$this.val(settings.textLabel);
				}
			});
		return $this;
	};
})(jQuery);
jQuery(document).ready(function($) {
	$("#googleSubscribe").labelBlur();
});
