$(document).ready(function(){
	$('#contact a,#mail_pic a,#r1 a,#r2 a,#r3 a,#r4 a,#r5 a,#r6 a').click(function(){
		cible=$(this).attr('href');
		 	if($(cible).length>=1){
				hauteur=$(cible).offset().top;
			}
			else{
				hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
			}
		
			$('html,body').animate({scrollTop:hauteur},1800,'easeOutQuint');
		});
	});	
