function TastenHandler() {
	this.reset = function()
	{
	 document.getElementById('reset').style.visibility='visible';
	 document.getElementById('reset').style.display='inline';
	 return true;
	}
	this.resetabbrechen = function()
	{
	 document.getElementById('reset').style.visibility='hidden';
	 document.getElementById('reset').style.display='none';
	 return true;
	}
	
	this.speichern = function()
	{
	 document.getElementById('speichern').style.visibility='visible';
	 document.getElementById('speichern').style.display='inline';
	 return true;
	}
	this.speichernabbrechen = function()
	{
	 document.getElementById('speichern').style.visibility='hidden';
	 document.getElementById('speichern').style.display='none';
	 return true;
	}
}

var tastenHandler = null;
$(document).ready(function() {
	var el = $("#id_speichern_email").add("#id_speichern_email_seite");
	
    el.bind("focus", function() {
    	if ("Ihre E-Mail-Adresse" == this.value) {
    		$(this).css({color: "black"});
    		this.value = "";
    	}
    });
    
    el.bind("blur", function() {
    	if (this.value == "") {
    		$(this).css({color: "gray"});
    		this.value = "Ihre E-Mail-Adresse";
    	}
    });
    
    el.trigger("blur");
    
    tastenHandler = new TastenHandler();
});