//	DECOUPAGE DE L'ADRESSE PUIS RECONSTRUCTION POUR REDIRECTION VERS UNE PAGE "USER-FRIENDLY"
var adress = window.location.href.split('/');
adress[adress.length-1] = '#'+(adress[adress.length-1].substr(0,adress[adress.length-1].indexOf('.html')));
adress = adress.join('/').replace(/\/#/, '.html#');
//alert(adress);
window.location.replace(adress);
