/**
 * @author Chris
 */

//Nécessite un chargement préalable de jquery

 			$(document).ready(function()
			{
				var url = window.location.href;
				if( url.indexOf("chapitre") != -1){
					$("div").hide();
					window.location.href = "../index.html";
				}
			});