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

    $("a.group").fancybox({
        'hideOnContentClick': true
    });
    
    if ( $("#header_image .image").length > 1 ) {
        $("#header_image").cycle({
            timeout: 3000,
            speed:   1000
        });
    }

});
