html = document.getElementById('element'); // On récupère l'identifiant élément
body = document.getElementById('corps'); // On récupère l'identifiant corps

if (screen.width <= 1024) // Si la largeur de l'écran est inférieure ou égale à 1024px
	{	
		body.style.borderLeftWidth = '0px';
		body.style.borderRightWidth = '0px';
		html.style.backgroundColor = '#181818';
	}
	
else // Si la largeur de l'écran est supérieure à 1024px
	{
		html.style.width = '1190px';
		html.style.margin = 'auto';
		html.style.backgroundImage = 'url(http://laprovidencefecamp.org/squelette/01_ext.jpg)';
		html.style.backgroundRepeat = 'no-repeat';
		html.style.backgroundColor = '#242424';
		body.style.borderLeftWidth = '0px';
		body.style.borderRightWidth = '0px';
	}
	

