// JavaScript Document
$(document).ready(function(){
});
function scrollToDiv(element){
var offset = element.offset();
var offsetTop = offset.top;
var totalScroll = offsetTop-navheight;}
$(‘body,html’).animate({
scrollTop: totalScroll
}, 500);
$(‘.fade div a’).click(function(){
var el = $(this).attr(‘href’);
var elWrapped = $(el);
scrollToDiv(elWrapped,40);
return false;
});