// This requires two steps:
// 1. need to add rel="VALUE" to each input field or textarea, where VALUE matches the predefined value
// 2. Need to apply the class 'clear-field' to each input field or textarea

$(document).ready(function(){
	$('.clear-field').focus(function(){
		if ($(this).val() == $(this).attr('rel')) {
			$(this).val('');
		}
		$(this).blur(function(){
			if ($(this).val().length == 0) {
				$(this).val($(this).attr('rel'));
			}
		});
	});
});