$('.top').click(function(){
$("html, body").animate({
scrollTop: mapHeight.offset().top - $(window).height()
}, "slow");
});
$('.bottom').click(function(){
$("html, body").animate({
scrollTop: mapHeight.height() + mapHeight.offset().top
}, "slow");
});