$(function(){
var video = document.getElementById('video');
var video_btn = document.getElementById('video-btn');
var btn_status = 0;
video_btn.addEventListener('click', function () {
$("#video-btn").css("display" , "none");
video.autoplay = true;
video.loop = true;
video.muted = true;
video.currentTime = 0;
});
var video2 = document.getElementById('video2');
var video_btn2 = document.getElementById('video-btn2');
var btn_status = 0;
video_btn2.addEventListener('click', function () {
$("#video-btn2").css("display" , "none");
video2.autoplay = true;
video2.loop = true;
video2.muted = true;
video2.currentTime = 0;
});
});