jQuery problems in chrome

jQuery problems in chrome

Hey, i have one problem, but just in chrome.
Ok, i have this in html:
<a href='javascript:;'  class='album' onclick='displayGallery($idArray[$i]);' id='albumid-$i' onmouseover='albumPreview($i);return true' onMouseOut='albumPreviewStop($i)>some images here</a>
And this functions:
var time;
function albumPreview(id) {
    $("#albumid-" + id + " > div:gt(0)").hide();
    time = setInterval(function() {
        $("#albumid-" + id + " > div:first")
                .hide()
                .next()
                .fadeIn()
                .end()
                .appendTo("#albumid-" + id);
    }, 2000);
    $("#album-info-" + id).fadeIn();
}

function albumPreviewStop(id) {
    clearInterval(time);
    $("#album-info-" + id).fadeOut();
}

function displayGallery(id) {
    $(".big-album").fadeIn("slow").load("../php-files/load-gallery.php?aid=" + id);
    $(".album-display").fadeOut();
}

$(document).mouseup(function(e)
{
    var container = $(".big-album");

    if (container.has(e.target).length === 0)
    {
        container.hide();
        $(".album-display").fadeIn();
    }
});
BUT DOSEN'T WORK IN CHROME. Thanks for help.