$(function() {
	$('#newsletter-email').val($('#newsletter-email').attr('title'));
	$('#newsletter-email').focus(function() {
		if($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	})
	$('#newsletter-email').blur(function() {
		if ($(this).val() == '') {
			$(this).val($(this).attr('title'));
		}
	})
})