$(document).ready(function() {
    $("ul#navigation > li").hover(function() {
        $("ul", this).fadeIn(250);
        $("a:first", this).css('background', 'url(/media/images/global-nav-rollover-bg.gif)').css('color', '#E8F578');
    background: ;
    }, function() {
        $("ul", this).fadeOut(250);
        $("a:first", this).css('background', 'transparent').css('color', '#919c46');
    });
    $.superbox();
});
