
$(document).ready(function() 
{
	$('.aller_vers a').click(aller_vers);

});



function aller_vers()
{
		var id		= $(this).attr('href')
     	$('html,body').animate({scrollTop: $(id).offset().top},'slow');
     	return false;
}
