| 12
 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
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 
 |  
<style>
ul#menu {
width: 130px;
list-style-type: none;
border-top: 1px solid #b9a894;
margin: 0;
padding: 0;
}
ul#menu ol {
display: none;
list-style-type: none;
margin: 0;
padding: 5px;
}
ul#menu li, 
ul#menu a {
font-family: verdana, sans-serif;
font-size: 11px;
color: #785a3c;
}
ul#menu li {
border-bottom: solid 1px #b9a894;
line-height: 15px;
}
ul#menu ol li {
border-bottom: none;
}
ul#menu ol li:before {
content: ".";
}
ul#menu a {
text-decoration: none;
outline: none;
}
ul#menu a:hover {
color: #539dbc;
}
ul#menu a:active { color: #be5028; }
.txt { color: #670001; font-size: 10px; font-family: verdana, sans-serif; text-align: justify; }
.titre { color: #670001; font-size: 12px; font-family: verdana, sans-serif; font-weight: bold; }
a:link { color: #785a3c; font-size: 11px; font-family: verdana, sans-serif; text-decoration: none; width: 130px; margin: 0; padding: 0; border-top-color: #b9a894; border-top-width: 1px; list-style-type: none; }
a:visited { color: #785a3c; font-size: 11px; text-decoration: none; width: 130px; margin: 0; padding: 0; border-top-color: #b9a894; border-top-width: 1px; list-style-type: none; }
a:hover { color: #539dbc; font-size: 11px; text-decoration: none; width: 130px; margin: 0; padding: 0; border-top-color: #b9a894; border-top-width: 1px; list-style-type: none; }
a:active { color: #be5028; font-size: 11px; text-decoration: none; width: 130px; margin: 0; padding: 0; border-top-color: #b9a894; border-top-width: 1px; list-style-type: none; }
</style>
 
<script type="text/javascript">
 
// Node Functions
 
if(!window.Node){
var Node = {ELEMENT_NODE : 1, TEXT_NODE : 3};
}
 
function checkNode(node, filter){
return (filter == null || node.nodeType == Node   || node.nodeName.toUpperCase() == filter.toUpperCase());
}
 
function getChildren(node, filter){
var result = new Array();
var children = node.childNodes;
for(var i = 0; i < children.length; i++){
if(checkNode(children, filter)) result[result.length] = children;
}
return result;
}
 
function getChildrenByElement(node){
return getChildren(node, "ELEMENT_NODE");
}
 
function getFirstChild(node, filter){
var child;
var children = node.childNodes;
for(var i = 0; i < children.length; i++){
child = children[i];
if(checkNode(child, filter)) return child;
}
return null;
}
 
function getFirstChildByText(node){
return getFirstChild(node, "TEXT_NODE");
}
 
function getNextSibling(node, filter){
for(var sibling = node.nextSibling; sibling != null; sibling = sibling.nextSibling){
if(checkNode(sibling, filter)) return sibling;
}
return null;
}
function getNextSiblingByElement(node){
return getNextSibling(node, "ELEMENT_NODE");
}
 
// Menu Functions & Properties
 
var activeMenu = null;
 
function showMenu() {
if(activeMenu){
activeMenu.className = "";
getNextSiblingByElement(activeMenu).style.display = "none";
}
if(this == activeMenu){
activeMenu = null;
} else {
this.className = "active";
getNextSiblingByElement(this).style.display = "block";
activeMenu = this;
}
return false;
}
 
function initMenu(){
var menus, menu, text, a, i;
menus = getChildrenByElement(document.getElementById("menu"));
for(i = 0; i < menus.length; i++){
menu = menus[i];
text = getFirstChildByText(menu);
a = document.createElement("a");
menu.replaceChild(a, text);
a.appendChild(text);
a.href = "#";
a.onclick = showMenu;
a.onfocus = function(){this.blur()};
}
}
 
if(document.createElement) window.onload = initMenu;
 
 
</script> | 
Partager