
	// Newsletter email field
	$('#edit-mail').focus(function() {
	    if ( $(this).attr('value') == 'Ihre Email' ) {
	         $(this).removeAttr('value');
	    }
	});
	$('#edit-mail').blur(function() {
			if ( $(this).attr("value") == undefined || !$(this).attr("value") ) {
	         $(this).attr('value', 'Ihre Email');
	    }
	});

