1
|
1 |
jQuery.noConflict(); |
|
2 |
jQuery(document).ready(function(){ |
|
3 |
jQuery("ul.sf-menu").supersubs({ |
|
4 |
minWidth: 12, // minimum width of sub-menus in em units |
|
5 |
maxWidth: 27, // maximum width of sub-menus in em units |
|
6 |
extraWidth: 1 // extra width can ensure lines don't sometimes turn over |
|
7 |
// due to slight rounding differences and font-family |
|
8 |
}).superfish({ |
|
9 |
delay: 400, // delay on mouseout |
|
10 |
animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation |
|
11 |
speed: 'fast', // faster animation speed |
|
12 |
autoArrows: false, // disable generation of arrow mark-up |
|
13 |
dropShadows: false // disable drop shadows |
|
14 |
}); |
|
15 |
}); |