// JavaScript Document

$(document).ready(function(){

    $('.video_frame').click(function(){
        $(this).hide();
        $('+ .video_file', this).show();
    });
	
});

