[jQuery] WMV stops when making an $.get()

[jQuery] WMV stops when making an $.get()


I got a strange problem. I only get this problem on one computer here.
(out of like 5, at work)
I have a function that updates a DIV from an ajax call with data
(pictures) and everytime it updates, the WMV is just showing white,
but it's continuing, "in the background". And when you scroll the
page, the video appears again.
I use a setInterval to call the function every 10th second.
Has anyone heard of the problem before?
$(function() {
    if($("#speaker_rotation").length > 0)
    {
        showRandomSpeaker();
        setInterval("showRandomSpeaker()", 10000);
    }
});
function showRandomSpeaker()
{
    $("#speaker_rotation").fadeOut("medium", function () {
        $.get("speaker_rotation.php", function(data){
                                        $("#speaker_rotation").html(data);
                                        $("#speaker_rotation").fadeIn("slow");
                                        });
    });
}