$(document).ready(function() {
	$("#zusatzinfo p").hover(function(){
		$(this).css("cursor", "pointer");
	},function(){}).click(function() {
		if($(this).html()=="Über LTFB - Link vorschlagen - Kontakt") {
			$(this).html("Infobereich schließen");
			$("#zusatzinfo p").css("color", "red");
			$("#footer").slideDown(250, function() {
				var destination = $("#zusatzinfo p").offset().top;
				$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 2000, "swing" );
			});
		} else {
			$("#zusatzinfo p").css("color", "#999999");
			$(this).html("Über LTFB - Link vorschlagen - Kontakt");
			$("#footer").slideUp(700);
			$('html, body').animate({scrollTop:0}, 700, 'swing');
		}
		return false;
	});
});


function mailsend(mail,p1,p2,p3) {
    var ca;
    ca = "mailto:" + p2 + "\@" + p3 + "." + p1;
    mail.href = ca;
    return (1);
}

