$(document).ready(function(){
	$('a[href^=#]').click(function(){
		
		cible=$(this).attr('href');
		if($(cible).length>=1){
			hauteur=$(cible).position().top;
			
		}
		else{
			hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
			
		}
		//console.log("h",hauteur);
		$("#bio").animate({top:-hauteur},1000,'easeOutQuint');
		return false;
		
		
		
	});
});
