JavaScript scrolldown
$('a').click(function(){ $('html, body').animate({ scrollTop: $( $(this).attr('href') ).offset().top - 100 //scrolls to anchor tag in body minus 100 px }, 'slow'); return false; });