$(function (){
	$('a[href*=#]').click(function (){
		if($('a[name="'+$(this).attr('href').replace('#','')+'"]').length==1){
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: $($('a[name="'+$(this).attr('href').replace('#','')+'"]')).offset().top},750);
			return false;
		}else{
			return true;
		}
	});
});