<!-- CHOISIT LA CSS EN FONCTION DE LA RESOLUTION -->
if (screen.width > 1600) {
	ratio = 1.5;
	document.write("<link rel='stylesheet' href='../style1600.css' type='text/css'><link rel='stylesheet' href='../style1600.css' type='text/css'>");
	} else {
			if (screen.width < 800) {
				ratio = 0.57;
				document.write("<link rel='stylesheet' href='../style800.css' type='text/css'><link rel='stylesheet' href='../style800.css' type='text/css'>");
				}
			else {
				switch (screen.width) {
				case 1600:
				ratio = 1.5;
				document.write("<link rel='stylesheet' href='../style1600.css' type='text/css'><link rel='stylesheet' href='../style1600.css' type='text/css'>");
				break;
				case 1280:
				ratio = 1.28;
				document.write("<link rel='stylesheet' href='../style1280.css' type='text/css'><link rel='stylesheet' href='../style1280.css' type='text/css'>");
				break;
				case 1152:
				ratio = 1;
				document.write("<link rel='stylesheet' href='../style.css' type='text/css'><link rel='stylesheet' href='../style.css' type='text/css'>");
    			break;
				case 1024:
				ratio = 0.86;
    			document.write("<link rel='stylesheet' href='../style1024.css' type='text/css'><link rel='stylesheet' href='../style1024.css' type='text/css'>");
    			break;
				case 800:
				ratio = 0.57;
    			document.write("<link rel='stylesheet' href='../style800.css' type='text/css'><link rel='stylesheet' href='../style800.css' type='text/css'>");
    			break;
    			default:
    			ratio = 1;
   				document.write("<link rel='stylesheet' href='../style.css' type='text/css'><link rel='stylesheet' href='../style.css' type='text/css'>");
				break;
				}
			}
		}
<!-- FIN DU SCRIPT -->
