﻿/* rotator is in the gallery.js */
function DocumentReadyBackground() {
    $("#tc-header").hover(function() {
        $(".movie-close-button").animate({ opacity: 0 }, 20);
    }, function() {
        $(".movie-close-button").delay(600).animate({ opacity: 1 }, 20);
    });

}
