$(function() {
	// allen Dokument-relativen Ankern die aktuelle URL voran stellen
	var thisLocation = window.location.href;
	$('a[href^="#"]').each(function() {
		$(this).attr('href', thisLocation + $(this).attr('href')); 
	});
});