$(document).ready(function() {
	$('.newsletter-box .field').focus(function() {
		if($(this).val() == 'Your email address') {
			$(this).val('');
		}
	}).blur(function() {
		if($(this).val() == '') {
			$(this).val('Your email address')
		}
	});
});
