$().ready(function() {
	$("fieldset.focusblur input").focus(function() {
		var label = $("label[for='" + $(this).attr('id') + "']");
		if (label.html() == $(this).val()) {
			$(this).val('');	
		}
	});
	$("fieldset.focusblur input").blur(function() {
		if ($(this).val() == '') {
			$(this).val($("label[for='" + $(this).attr('id') + "']").html());	
		}
	});
	
	$("fieldset.focusblur textarea").focus(function() {
		var label = $("label[for='" + $(this).attr('id') + "']");
		if (label.html() == $(this).val()) {
			$(this).val('');	
		}
	});
	$("fieldset.focusblur textarea").blur(function() {
		if ($(this).val() == '') {
			$(this).val($("label[for='" + $(this).attr('id') + "']").html());	
		}
	});				
});