//menus dropdown $(document).ready(function() { // Bootstrap menus open on hover $('ul.nav li.dropdown').hover(function() { $('.dropdown-menu', this).fadeIn(); }, function() { $('.dropdown-menu', this).fadeOut('fast'); }); // hover $('.logged-in .navbar-fixed-top').affix({ offset: { top: 46 } }); });