function getWindowWidth() {
	var windowWidth = 0;
	if (typeof(window.innerWidth) == 'number') {
		windowWidth = window.innerWidth;
	}
	else {
		if (document.documentElement && document.documentElement.clientWidth) {
			windowWidth = document.documentElement.clientWidth;
		}
		else {
			if (document.body && document.body.clientWidth) {
				windowWidth = document.body.clientWidth;
			}
		}
	}
	return windowWidth;
}
function setMenu()
	{
		var windowWidth = getWindowWidth();
		if (windowWidth < 1050)
			{
			document.getElementById('menu').style.minWidth='785px';
			document.getElementById('logo').src='images/logo-p.jpg';
			document.getElementById('menuAide').src='images/menu-aide-p.jpg';
			document.getElementById('menuAccueil').src='images/menu-accueil-p.jpg';
			document.getElementById('menuCompte').src='images/menu-compte-p.jpg';
			document.getElementById('menuReservations').src='images/menu-reservations-p.jpg';
			document.getElementById('menuHistorique').src='images/menu-historique-p.jpg';
			document.getElementById('menuDeconnexion').src='images/menu-deconnexion-p.jpg';
			}
		else
			{
			document.getElementById('menu').style.minWidth='1020px';
			document.getElementById('logo').src='images/logo.jpg';
			document.getElementById('menuAide').src='images/menu-aide.jpg';
			document.getElementById('menuAccueil').src='images/menu-accueil.jpg';
			document.getElementById('menuCompte').src='images/menu-compte.jpg';
			document.getElementById('menuReservations').src='images/menu-reservations.jpg';
			document.getElementById('menuHistorique').src='images/menu-historique.jpg';
			document.getElementById('menuDeconnexion').src='images/menu-deconnexion.jpg';
			}
	}

window.onload = function() {
	setMenu();
}
window.onresize = function() {
	setMenu();
}