$(document).ready(function() {
    
if ( $('#adminbar #toolbar').length ) {
    
    $("#featured").css({
        "marginTop":"-30px"
    });
    $(".subCall").css({
        "marginTop":"-30px",
        "marginBottom":"10px",
        "padding-bottom":"26px"
    });
    $("#subTag").css({
        "overflow":"visible",
        "padding-bottom":"30px"
    });
    $("#subTag p").css({
        "color":"#000"
    });
    $("#next, #prev").show();
    $('#featured').cycle({
        fx: 'fade',
        timeout: 0,
        cleartype:  1,
        next: '#next',
        prev: '#prev'
    });
}
else {
        $('#featured').cycle({
            fx: 'fade',
            timeout: 0,
            cleartype:  1,
            random: true
        });
    }
});
