
		function gotonissanwebsite() {
			window.open("http://www.nissan.fr/",'nissanwebsite');
		}
		
		function gotohomepage() {
			window.location = 'index-2.html';
		}
		
		function navLoadItem(menu, submenu) {
  		var new_location
  		<!-- START MODIFIED //-->
  		if (menu=='1') {
  			if (submenu=='1') { new_location = 'weight.html'; };
  			if (submenu=='2') { new_location = 'payload.html'; };
  			if (submenu=='3') { new_location = 'attributes.html'; };
  		}
  		else if (menu=='2') {
  			if (submenu=='1') { new_location = 'interstar.html'; };
  			if (submenu=='2') { new_location = 'kubistar.html'; };
  			if (submenu=='3') { new_location = 'primastar.html'; };
  			if (submenu=='4') { new_location = '4x4.html'; };
  			if (submenu=='5') { new_location = 'company.html'; };
  			if (submenu=='6') { new_location = 'cabstar.html'; };
  			if (submenu=='7') { new_location = 'atleon.html'; };
  		}
  		else if (menu=='3') {
        if (submenu=='1') { new_location = 'finance.html'; };
        if (submenu=='2') { new_location = 'services.html'; };
      }
  		else if (menu=='4') {
        if (submenu=='1') { new_location = 'news.html'; };
      }
  		<!-- END MODIFIED //-->
  		else {}
  		<!--alert (new_location);//-->
  		window.location = new_location;
  		
		}
		
		function showVehicle(product) {
			if ( product != "pickup") {
				var new_location = product + '.html';
			} else {
				var new_location = '4x4.html#title3';
			}
			window.location = new_location;
		}
	
	<!-- START ADDED //-->

	nMenu = 6;
	topPosY = 106;
	largeurNavigation = 720;
	tabMenuPosX = new Array( "", 1, 91, 210, 330, 224, 461);
	tabMenuLargeur = new Array( "", 210, 106, 176, 88, 176, 176);
	tabMenuHauteur = new Array( "", 69, 69, 45, 45, 45, 22);
	idTimeout = null;

	function declencheInitSousMenus( secondes) {
		if ( idTimeout != null) {
			clearTimeout( idTimeout);
		}
		idTimeout = setTimeout( "initSousMenus()", secondes * 1000);
	}

	function selectSousMenu( num) {
	  initSousMenus();
		afficheSousMenu( num);
	}

	function initSousMenus() {
		for ( var iMenu = 1; iMenu <= nMenu; iMenu ++) {
			masqueSousMenu( iMenu);
		}
	}

	function afficheSousMenu( num) {
		var offsetX = 0;
		var newX = 0;
		if ( ( navigator.userAgent.indexOf("MSIE") != -1) && ( navigator.userAgent.indexOf("Mac") != -1)) {
		 	var tmpSousMenu = eval(document.getElementById("sousmenu" + num));
			/* offsetX = document.body.offsetWidth;
			newX = tabMenuPosX[ num] + ( offsetX - largeurNavigation) / 2;
			tmpSousMenu.style.pixelLeft = newX; */
		} else if ( navigator.appName == "Netscape") {
		 	var tmpSousMenu = eval(document.getElementById("sousmenu" + num));
			offsetX = document.body.offsetWidth;
			newX = tabMenuPosX[ num] + ( offsetX - largeurNavigation) / 2;
		  tmpSousMenu.style.left = newX;
		} else {
			var tmpSousMenu = eval(document.getElementById("sousmenu" + num));
			offsetX = document.body.offsetWidth - 20;
			newX = tabMenuPosX[ num] + ( offsetX - largeurNavigation) / 2;
			tmpSousMenu.style.pixelLeft = newX;
		}

		tmpSousMenu.style.visibility = "visible";

		//declencheInitSousMenus();

	}

	function masqueSousMenu( num) {
	  var tmpSousMenu = eval(document.getElementById("sousmenu" + num));
		tmpSousMenu.style.visibility = "hidden";
	}

	<!-- END ADDED //-->

