$(document).ready(function(){
	$("#login_email_r").attr({ value: 'E-Mail' }).focus(function(){
	    if($(this).val() == "E-Mail"){
	       $(this).val("");
	    }
	});
	
	$("#login_pass_r").attr({ value: 'passwort' }).focus(function(){
		if($(this).val() == "passwort"){
			$(this).val("");
		}
	});

	$("#qs").attr({ value: 'Suche' }).focus(function(){
		if($(this).val() == "Suche"){
			$(this).val("");
		}
	});
});