﻿$(document).ready(function() {
	$(".anker").click(function(){		
			if ($.browser.opera) {
                    var target = "html";
                }else{
                    var target = "html,body";
                }
		var ziel = $(this).attr("href");
		location.href = ziel;
		$(target).animate({scrollTop:$(ziel).offset().top-170
}, 1000);
});
return false;
});

