function changePageMediatheque (currentPage, nextPage){
  var blockToHide = document.getElementById(currentPage);
  var blockToDisplay = document.getElementById(nextPage);
	blockToHide.style.visibility='hidden';
	blockToHide.style.position='absolute';
	blockToDisplay.style.position='relative';
	blockToDisplay.style.visibility='visible';
}