I figured out how to reset the Youtube video upon hiding thanks to Heathrowe's answer and FigFrance's contribution to the thread found here:
I set up buttons to show and hide but this would also work with a single toggle button. I created a working function of that as well if you want that code.
Show Video:
//code to embed youtube into symbol
var youtube = $("<iframe/>");
sym.$("video").empty().append(youtube);
youtube.attr('type', 'text/html');
youtube.attr('width', '640');
youtube.attr('height', '360');
youtube.attr('src', 'https://www.youtube.com/embed/MyFv6UKsW70?rel=0');
youtube.attr('frameborder', '1');
youtube.attr('allowfullscreen', '0');
// Show an element
sym.$("video").show();
Hide Video:
sym.$("video").empty();
// Hide an element
sym.$("video").hide();