$(function() {
    $("a[rel='detail_zapisu']").colorbox({
        current: 'Obrázek {current} z {total}'
    }

    );


    $("div.flash_hovno").livequery(function() {
        $(this).draggable();
        setTimeout(function() {
            $("div.flash_hovno").fadeOut('fast');
        }, 4000); // <-- time in milliseconds
    });

    $("div.flash_hovno div.close a").live('click',function(e) {
        $("div.flash_hovno").fadeOut('fast');
        e.stopPropagation();
        e.preventDefault();

    });

/*
    $("div.flash_hovno").live('mouseover',function(){
        $(this).draggable();
        $(this).delay(4000).fadeOut('fast');

    });
   */

});
