/* -------------------------------------
/////////////////////////////////////////
// Blow Away Form Fields with JQuery. //
/////////////////////////////////////////
// C.Burnett :: 10.24.06 ////////////////
/////////////////////////////////////////
---------------------------------------*/
$.fn.blowAway = function() {
	$('.blowAway').each(function (i) {
		$(this).val(this.attributes.title.value);
		$(this).bind ('focus', function () {
			var v = $(this).val();
			var ov = this.attributes.title.value;
			if (v == ov) {
				$(this).val('');
			}
		});
		$(this).bind ('blur', function () {
			var v = $(this).val();
			var ov = this.attributes.title.value;
			if (v == '') {
				$(this).val(ov);
			}
		});
	});
};

