Cufon.replace('h2, h3');

$(function() {
	$('#newsletter input[type=text]').each(function() {
		var defaultValue = $(this).val();
		$(this).focus(function() {
			if($(this).val() == defaultValue) {
				$(this).val('');
			}
		});
		$(this).blur(function() {
			if($.trim($(this).val()) == '') {
				$(this).val(defaultValue);
			}
		});
	});
});
