<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var topimage		= "yes" 		//  SHOW IMAGE AT THE TOP OF THE MENU
var botimage 		= "yes" 		//  SHOW IMAGE AT THE BOTTOM OF THE MENU
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "106"		// DATE Y LOCATION

document.write('<DIV id="menulocation" style="z-index: 10;" class="printhide">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="154"><tr><td>');	
   if (topimage == "yes") {
document.write('<img src="images/menu-top-1.gif" width="154" height="81" class="menutrans"></a><br>');

document.write('<img src="images/menu-top-2.gif" width="154" height="39"></a><br>');
}
document.write('<img src="../images/spacer.gif" width="1" height="6"></a><br>');
document.write('<img src="../images/spacer.gif" border="0" width="4" height="0"><a href="../fr/index.html"><img src="../images/flag_fr_on.gif" alt="Français" border="0" width="26" height="18">');

document.write('<img src="../images/spacer.gif" border="0" width="4" height="1"><a href="../en/index.html"><img src="../images/flag_en_off.gif" alt="English" border="0" width="26" height="18">');

document.write('<img src="../images/spacer.gif" border="0" width="4" height="1"><a href="../es/index.html"><img src="../images/flag_es_off.gif" alt="Español" border="0" width="26" height="18"></a><br>');

document.write('<img src="../images/spacer.gif" width="1" height="6"></a><br>');

document.write('<ul id="top-nav">');

// START MENU LINKS - EDIT BELOW THIS AREA

document.write('  <li class="menuT"><a href="index.html">Accueil</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="membres.htm">À qui s\'adresse USD Club</a></li>');
document.write('      <li><a href="commercial-PICB.htm">À qui s\'adresse Le PICB</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="services.htm">Services</a></li>');

document.write('  <li class="menuT"><a href="mission1.htm">Notre Mission</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="mission1.htm">Éthique et Morale</a></li>');
document.write('      <li><a href="mission2.htm">Internationale</a></li>');
document.write('      <li><a href="mission3.htm">Solidarité</a></li>');
document.write('      <li><a href="mission4.htm">Fédérative</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="reglements.htm">Règlements</a>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="nouvelles.htm">Nouvelles</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="opportunites.htm">Opportunités</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="banqueinnov.htm">Banque des Innovations</a>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="liens.htm">Ressources</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="cartedusite.htm">Carte du Site</a></li>');
document.write('      <li><a href="liens.htm">Nos Liens</a></li>');
document.write('      <li><a href="payclubfr.htm">Paiements</a></li>');
//document.write('      <li><a href="PDFgallery.htm">Fichiers PDF</a></li>');
document.write('    </ul>');
document.write('  </li>');


document.write('  <li class="menuT"><a href="contacts.htm">Contacts</a></li>');

document.write('</td></tr><tr><td>');
document.write('<img src="../images/spacer.gif" width="1" height="1"><a href="contacts.htm"><img src="../images/hands152100.jpg" border="0"></a></li');
document.write('<img src="../images/spacer.gif" width="1" height="1"><br>');
document.write('<img src="../images/spacer.gif" width="1" height="1"><img src="../images/globe152.gif" border="0"></li');
document.write('<img src="../images/spacer.gif" width="1" height="1"><br>');
document.write('<img src="../images/spacer.gif" width="1" height="1"><IMG SRC="images/paragraph-line.jpg" HEIGHT="2" WIDTH="152" border="0" vspace="0" alt="image"></li');

// END LINKS //


document.write('</ul>');


document.write('</td></tr></table></DIV>');




//COPYRIGHT 2006 © Creative Technobiz design Corporation
//Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;

// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Dimanche","Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi")
var monthname=new Array("Janvier","Février","Mars","Avril","Mai","Juin","Juillet","Août","Septembre","Octobre","Novembre","Décembre")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + ", ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

//  End -->