|
|
@ -33,16 +33,16 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(".nav-element").mouseover(function(){
|
|
|
|
$(".nav-element").mouseover(function(){
|
|
|
|
$(this).next(".sn-grey-opacity").show();
|
|
|
|
$(this).next(".sn-grey-opacity").show(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$(".sn-grey-opacity").mouseover(function(){
|
|
|
|
$(".sn-grey-opacity").mouseover(function(){
|
|
|
|
$(this).show();
|
|
|
|
$(this).show(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$(".nav-element").mouseout(function(){
|
|
|
|
$(".nav-element").mouseout(function(){
|
|
|
|
$(this).next(".sn-grey-opacity").hide();
|
|
|
|
$(this).next(".sn-grey-opacity").delay(150).hide(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$(".sn-grey-opacity").mouseout(function(){
|
|
|
|
$(".sn-grey-opacity").mouseout(function(){
|
|
|
|
$(this).hide();
|
|
|
|
$(this).delay(150).hide(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
$(".sn-sub-nav").each(function(){
|
|
|
|
$(".sn-sub-nav").each(function(){
|
|
|
|
$(this).children(".sn-subnav-slice:last").hide();
|
|
|
|
$(this).children(".sn-subnav-slice:last").hide();
|
|
|
|