$(document).ready(function(){
    $('.slideshow').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 0,
        next:   '#ss_next',
        prev:   '#ss_prev'
    });

    $('#ss_prev').click(function(){
       return false;
    });

    $('#ss_next').click(function(){
       return false;
    });

    // fonteffect
    $('.specialauth').FontEffect({
        shadow          : true,         // Apply the shadow effect
        shadowColor     : "#008F13",    // The color of the shadow
        shadowOffsetTop : 0,            // The top offset position (px)
        shadowOffsetLeft: 0,            // The left offset position (px)
        shadowBlur      : 2,            // The shadow blur 1=none,2=low,3=high
        shadowOpacity   : .1            // The opacity of the shadow (0=none,1=all)
    });
});