(function($){
	$(function(){
		$('a[href^="#"]').click(function(){
			if ( $(this).attr('href') != '#' ) {
				if ( $( $(this).attr('href') ).length ) {
					var p = $( $(this).attr('href') ).offset();
					$('html,body').animate({ scrollTop: p.top }, 200);
				}
			}
			return false;
		});
	});
})(jQuery);
