$(document).ready(function() {

		$('a[href^="#"]').click(function(){
										 ancre=$(this).attr('href');
										 ancre=ancre.replace(/\#/i, "");
										 $('html, body').animate({scrollTop: $("a[name='"+ancre+"']").offset().top},'slow');
										 return false;
										 });
	
});

