$(document).ready(function()
{
    $('div#container-prezentare').cycle({
        fx:     'fade', 
        speed:  'slow', 
        timeout: 5000, 
        next:   'a#inainte', 
        prev:   'a#inapoi',
        pause:   1
    });

    /* ADOBE */
    $('div#background').show();
    var inaltime = $('div#background').height();
    setTimeout(function(){$('div#background .sus').animate({"top":(inaltime/2)-204},700)},800);
    setTimeout(function(){$('div#background .jos').animate({"top":inaltime/2},700)},800);

    $('a#btn-inchide').click(function(){
        $('div#background').fadeOut();
        return false;
    });
    setTimeout(function(){ $('div#background').fadeOut() },8000);
});

