var intro = {
	voirPresentation : function() {
		window.location = 'home.php';
	},

	init : function() {
		window.onunload = function(){};
		setTimeout(intro.voirPresentation, 3000);
	}
};