$(document).ready(function() {
	$('a[href*=#]').not('.slider-button').bind('click', function(e) {
		var target = $(this).attr("href");
		var position = $('a[name*='+target.replace('#','')+']').offset().top;
		if(position!=0){
			e.preventDefault();
			$('html, body').animate({ scrollTop: position }, 500, function() {
				location.hash = target; //attach the hash (#jumptarget) to the pageurl
			});
			return false;
		}
	});
});
