jQuery(document).ready(
	function() {
		jQuery('a').each(
			function() {
				var url = jQuery(this).attr('href');
				if ( url && url.match(/^#/) ) {
					jQuery(this).unbind('click').bind(
						'click',
						function() {
							var return_elem = jQuery(this);
							var return_pos = jQuery(window).scrollTop();
							
 							jQuery('html,body')
								.animate(
									{scrollTop: jQuery(url).offset().top},
									800,
									function () {
									}
								);

							return false;
						}
					);
				}
			}
		);
	}
);

