var loadVideoRollovers = function () {
var cache_image = new Image();
cache_image.src = "/images/film-negative-sprocket-holes-250x250.png";
var fs_counter = 1;
$('.video-thumbnail').each(function(index, value) {
var video_thumbnail_off = value;
$(video_thumbnail_off).append($('
'));
$( '#fs-label-' + fs_counter ).css("position", "relative");
$( '#fs-label-' + fs_counter ).css("top", "-153px");
//$( '#fs-label-' + fs_counter ).parent().parent().find("div.title").css("position", "relative").css("top", "-153px");
fs_counter++;
});
}
window.addEventListener('load', loadVideoRollovers, true);