1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| <!-- menu général-->
<script type="text/javascript">
<!--
/******** Debut du script du menu ************/
var timer = null;
var objOut = null;
function mouseOut(obj)
{
var elmt = document.getElementById(obj.id+"Item");
elmt.style.display = "none";
document.getElementById(obj.id+"Titre").className="titreMenu itemOut";
//instruction a placer a la fin de la fonction
timer = null;
}
function fout(obj)
{
objOut = obj;
if (timer==null)
{
timer = setTimeout("mouseOut(objOut)","1000");
}
}
function fover(obj)
{
var elmt;
clearTimeout(timer);
timer = null;
elmt = document.getElementById(obj.id+"Item");
elmt.style.display = "block";
document.getElementById(obj.id+"Titre").className="titreMenu itemOver";
if (objOut!=obj && objOut!=null)
{
mouseOut(objOut);
}
}
/******** Fin du script du menu ************/
//-->
</script>
<div id="menuGeneral">
<dl id="menu">
<THELIA_MENU_RUBRIQUES type="RUBRIQUE" parent="0" profondeur="1" classement="manuel" onmouseout="fout(this) "onmouseover="fover(this)">
<dt><a href="#URL">#TITRE</a></dt>
<dd class="ssmenu">
<ul>
<THELIA_BLOC_SOUS_MENU type="RUBRIQUE" parent="#ID" >
<THELIA_SOUS_MENU_RUBRIQUE type="RUBRIQUE" id="#ID" courante="0" onmouseout="this.className='itemOut'" onmouseover="this.className='itemOver'">
<li><a href="#URL">#TITRE</a></li>
</THELIA_SOUS_MENU_RUBRIQUE>
<THELIA_SOUS_MENU_RUBRIQUE_SELECTION type="RUBRIQUE" id="#ID" courante="1">
<li><a href="#URL" class="selected">#TITRE</a></li>
</THELIA_SOUS_MENU_RUBRIQUE_SELECTION>
</THELIA_BLOC_SOUS_MENU>
<li class="invisibleW3C"> </li>
</ul>
</dd>
</THELIA_MENU_RUBRIQUES>
<THELIA_MENU_CONTENU type="CONTENU" parent="0" profondeur="1" classement="manuel">
<dt><a href="#URL">#TITRE</a></dt>
</THELIA_MENU_CONTENU>
</dl>
</div> |