jQuery(document).ready(function($){$('.scroll-pane').jScrollPane({showArrows:true});});
jQuery(function($)
{
$(".menu a").hover(function(){
$(this).fadeTo("slow", 0.5);
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 1.0); // This should set the opacity back to 100% on mouseout
});
});
jQuery(document).ready(function($){
    $(".menu a").hover(makeTall,makeShort);
    $(".menu a").hoverIntent(makeTall,makeShort);
    $(".menu a").hoverIntent({
        over: makeTall, 
        timeout: 500, 
        out: makeShort
    });
}); // close document.ready

function makeTall(){  $(this).animate({"height":111},200);}
function makeShort(){ $(this).animate({"height":26},200);}
