$(document).ready(function() {
        $('li.current-1').hover(
        function() { $(this).animate({"top": "-=10px"}, "normal"); },
        function() { $(this).animate({"top": "+=10px"}, "normal"); }
    );

        $('ul.sf-menu').superfish({
            delay:       50,                            // one second delay on mouseout
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
            speed:       'normal',                          // faster animation speed
            autoArrows:  false,                           // disable generation of arrow mark-up
            dropShadows: true // disable drop shadows

        });
    });

$(function() {
        $('#slideshow1').cycle({
        timeout: 10000,
        speed: 6000,
        sync: 1
        }
        );
    });
    
    
    
