$(document).ready(function() {
	nlField = $('#sidebody .newsletter INPUT.text');
	nlField.focus(function() {
		if (this.value == this.defaultValue) {
			this.value = '';
			nlField.addClass('active');
		}
	});

	nlField.blur(function() {
		if (this.value == '') {
			this.value = this.defaultValue;
			nlField.removeClass('active');
		}
	});
});

