$(function() {
	$('.gallerie a, #mainpic').lightBox({
	   txtImage: 'Bild',
       txtOf: 'von'
    });
    
    positionFooter(); 
	function positionFooter(){
		if($(document.body).height() < $(window).height()){
			$("#Footer").css({position: "absolute",top:($(window).scrollTop()+$(window).height()-$("#Footer").height())+"px"});
            $("#Hauptbereich").css("padding-bottom", "75px");
		}	
	}
 
	$(window).scroll(positionFooter).resize(positionFooter);
    $("body").onload(positionFooter);
}); 
