$(document).ready(function(){
	$('#hf-bottom').bind("mouseenter",function(e){
		$('#startanimation-text').fadeOut('slow');
		$('#startanimation-bild').fadeIn('slow');
    });
	$('#hf-bottom').bind("mouseleave",function(e){
		$('#startanimation-text').fadeIn('slow');
		$('#startanimation-bild').fadeOut('slow');
    });
});