$(document).ready(function(){

$("input#code").focus(function () {
    	var text = $(this).val();
    	if(text == 'Bitte Bildcode eingeben'){
			$(this).val("");
		}
    });
    $("input#code").blur(function () {
		var text = $(this).val();
		if(text == ''){
			$(this).val("Bitte Bildcode eingeben");
		}
    });

$("input#birthdate").focus(function () {
    	var text = $(this).val();
    	if(text == 'tt.mm.yyyy'){
			$(this).val("");
		}
    });
    $("input#birthdate").blur(function () {
		var text = $(this).val();
		if(text == ''){
			$(this).val("tt.mm.yyyy");
		}
    });
});
