
jQuery(document).ready(function(){jQuery('#nav > a').hoverIntent({sensitivity: 6, interval: 100, over: othernavOver, timeout: 100, out: othernavOut});jQuery('#nav-bottom li:first').css({"border-right" : "none"});jQuery('#nav-bottom li:last').css({"border-left" : "none"});});
function othernavOver() {jQuery(this).animate({opacity : 1}, 300);}function othernavOut() {jQuery(this).animate({opacity : 0}, 150);}