// JavaScript Document
// platzstiften.de


$(document).ready(function(){

	$('#headerbild').hover(function(){
		$('#vorstiften').animate({opacity:'hide'},'slow','swing');
		$('#animekom').append("<br />- Ja! Werden Sie Stifter.");
	},function(){
		$('#vorstiften').animate({opacity:'show'},300,'swing');
		$('#animekom').text("- Ist der Platz noch frei?..");
    });

});
