Line | |
---|
1 | $(document).ready(function(){ |
---|
2 | |
---|
3 | // fait marcher le menu a deux niveaux |
---|
4 | $('#navigation').children('.niveau1').each(function(){ |
---|
5 | $(this).mouseover(function() { |
---|
6 | $(this).children('.ulniveau2').show(); |
---|
7 | }) |
---|
8 | |
---|
9 | $(this).mouseout(function() { |
---|
10 | $(this).children('.ulniveau2').hide(); |
---|
11 | }) |
---|
12 | }); |
---|
13 | |
---|
14 | window.setTimeout("redresse();",500); |
---|
15 | $(window).resize(function(){ |
---|
16 | redresse(); |
---|
17 | }); |
---|
18 | |
---|
19 | }); |
---|
20 | |
---|
21 | // hacke la hauteur du bandeau par rapport a la navigation |
---|
22 | function redresse(){ |
---|
23 | var hauteur= $("#navigation").height(); |
---|
24 | $("#bandeau").height(120 + (hauteur-22)); |
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.