/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/various/tabbed_pages.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


		onload = function() {
			var e, i = 0;
			while (e = document.getElementById('menu_top').getElementsByTagName ('DIV') [i++]) {
				if (e.className == 'on' || e.className == 'off') {
				e.onclick = function () {
					var getEls = document.getElementsByTagName('DIV');
						for (var z=0; z<getEls.length; z++) {
						getEls[z].className=getEls[z].className.replace('show', 'hide');
						getEls[z].className=getEls[z].className.replace('on', 'off');
						}
					this.className = 'on';
					var max = this.getAttribute('title');
					document.getElementById(max).className = "show";
					}
				}
			}
		}

	function accesskey()
			{
			document.getElementById('imprimantes_braille').accessKey="p";
			document.getElementById('formations_produits').accessKey="f";
			document.getElementById('productions_audio').accessKey="a";
			document.getElementById('duplication_cassette').accessKey="d";
			document.getElementById('services_ventes').accessKey="v";
			}


		function go() 
			{
			window.location=document.getElementById("menu_catalogue").value;
			}
