jQuery(document).ready(function() {
	jQuery('#destinations a').click(function() {
		var mover = jQuery("#frame").offset().top-30;
		jQuery('html,body').animate({scrollTop: mover}, 1000);
	});
});