// JavaScript Document
$(document).ready(function(){
						   
			$("a[href^=#]").click(function(){
						
				var cible=$(this).attr("href");	
				
				 
	if($(cible)){
		
	   hauteur=$(cible).offset().top;
	   }else{
		   hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
		  alert(hauteur);
		  }
		 
		  $('html,body').animate({scrollTop:hauteur},1000);
		return false;							  
			  });
						  });

