$(document).ready(function() {
        $('a[href*=#]').bind("click", function(event) {
                event.preventDefault();
                var ziel = $(this).attr("href");

                $('html,body').animate({
                        scrollTop: $(ziel).offset().top
                }, 2000 , function (){location.hash = ziel;});
});
return false;
});

function toggleLogin(){
  $("#login").toggle("slow");
}

function makeButtons(){
  $(".buttonLink").each(function(){
    var thisHref=$(this).attr("href");
    var thisValue=$(this).text();
    var thisStyle=$(this).attr("style");
    var content='<input type="button" style="'+thisStyle+'" value="'+thisValue+'" onclick="window.location.href=\''+thisHref+'\';"></input>';
    $(this).replaceWith(content);
  });
}