$(function(){
  $("#navcontact a").click(function(event){
        var t = $(this).attr('href');
        var target = $(t);
        $('body').animate({scrollTop: target.offset().top }, 1000);
	$(target).fadeTo('fast', 0.3, function(){$(target).fadeTo('slow', 1.0); });
	event.preventDefault();
   });
});

