// Function Mouse-Hover Startseite
$(document).ready(function(){ 
	$("#btn_liebe1").hover(
		function() {
			$(".txt_liebe1").stop().animate({"opacity": "1"}, "fast");
		},
		function() {
			$(".txt_liebe1").stop().animate({"opacity": "0"}, "slow");
		}
	); 

	$("#btn_liebe2").hover(
		function() {
			$(".txt_liebe2").stop().animate({"opacity": "1"}, "fast");
		},
		function() {
			$(".txt_liebe2").stop().animate({"opacity": "0"}, "slow");
		}
	); 

	$("#btn_liebe3").hover(
		function() {
			$(".txt_liebe3").stop().animate({"opacity": "1"}, "fast");
		},
		function() {
			$(".txt_liebe3").stop().animate({"opacity": "0"}, "slow");
		}
	); 

	$("#btn_liebe4").hover(
		function() {
			$(".txt_liebe4").stop().animate({"opacity": "1"}, "fast");
		},
		function() {
			$(".txt_liebe4").stop().animate({"opacity": "0"}, "slow");
		}
	); 

});


