var moviesEl = document.getElementById( 'movies' );
var video_frames = moviesEl.getElementsByClassName( 'video_frame' );
var title_boxes = moviesEl.getElementsByClassName( 'title_box' );
for ( var i = -1, video_frame; video_frame = video_frames[++i]; ) {
if ( !(i in title_boxes) ) break;
video_frame.title_box = title_boxes[ i ];
video_frame.onmouseover = hide_title;
video_frame.onmouseout = show_title;
}
var box_style = title_boxes[0].style;
function hide_title(){
var box_style = this.title_box.style;
box_style.opacity = 0;
box_style.zIndex = -1;
}
function show_title(){
var box_style = this.title_box.style;
box_style.opacity = 0;
box_style.zIndex = -1;
}