$(document).ready(function(){

	$("a[href*='#']").click(function(){
		anchor_target = $(this).attr("href");
		anchor_offset = $(anchor_target).offset();
		$(this).blur();
		$("html,body").animate({scrollTop:anchor_offset.top},"slow");
		return false;
	});

});
