$(document).ready(function() {
    $('#nav li.horiz').mouseover(function() {
        $(this).find('a.horiz').addClass('horiz-hover');
        $(this).find('ul.vert').show();
    });

    $('#nav li.horiz').mouseleave(function() {
        $(this).find('ul.vert').hide();
        $(this).find('a.horiz').removeClass('horiz-hover');
    });

    $('#banners, #banners-home').cycle({
        fx: 'fade',
        timeout: 5000
    });
});
