$(document).ready(function() {
    $(this).find('.topmenu li ul').not('.topmenu li[class*="active"] ul').hide();
    
    $('.topmenu li').not('.topmenu li[class*="active"]').hover(function() {
        $(this).find('.dropmenu:first').show()
    }, function() {
        $(this).find('.dropmenu:first').hide();
    });

    $('#slideshow').cycle({
    fx:    'scrollUp',
    speed:  5000
 });

});
