$(document).ready(function(){ 
$('#left_container .contact a').hover(function(){
							
								$('#contact_hover').show();
								},function(){
									$('#contact_hover').hide();
									}
								
								
								);
$('#contact_hover').hover(function(){ $('#contact_hover').show(); }, function(){$('#contact_hover').hide();});
$('#md4e46email').attr('value' , 'E-Mail-Adresse');
$('#md4e46email').focus(function(){
								 
								 $(this).attr('value' , '');
								 });

						   });
