$(document).ready(function () {			
	
	$(".short").focus(function () {
		valueAusgangswert = $(this).val();
   		$(this).attr('value', '');
		$(this).css({'background-color': '#efefef'});
    });
		 
	
	$(".short").blur(function () {
		var valuePruefwert = $(this).val();
		$(this).css({'background-color': ''});
		if (valuePruefwert == ""){
        	$(this).attr('value', valueAusgangswert);
	    }
    });
});
