window.addEvent('domready', function(){
	// First Example
	
	// Here we add the custom event to the input-element
	$('conteneur').addEvent('mousewheel', function(e){
	e.stop(); // prevent the mousewheel from scrolling the page.
	
	if (e.wheel < 0){
		moveLayer(-6);
		} else {
		moveLayer(6);
		}
	clearTimeout(Timer);
	});	
});
