	$(document).ready(function (){ 
			$('#re_email').click(
				function() {
					if (document.getElementById('re_email').value == 'Deine E-Mail') {
           				$(this).attr('value', '');
           				}
					}
			);
			$('#r_name').click(
				function() {
					if (document.getElementById('r_name').value == 'Name') {
           				$(this).attr('value', '');
           				}
					}
			);
			$('form input').focus(
				function() {
						$(this).attr('style', 'background: #DDDDDD');
					}
			);
			$('form input').blur(
				function() {
						$(this).attr('style', 'background: #FFFFFF');
					}
			);
			 
		});	
