jQuery(document).ready(function($) {
	
	$('form').each(function() {
		$(this).find('input[type=text], textarea').each(function() {
			var e = $(this), d = e.val();
			e.focus(function() { if(e.val() == d) e.val(''); });
			e.blur(function() { if(e.val() == '') e.val(d); });
		});
	});
	
});
