$(document).ready(function() {

    $('a.iframed_video_holder').each(function(){

        $(this).click(function(ev){

            ev.preventDefault();

            var video = $(this).attr('href');
            var pageWithVideo = "<iframe scrolling='none' frameborder='none' src='"+video+"' height='643' width='990'></iframe>"

            // Create and show the Dialog pop-up
            var videoDialog = new dijit.Dialog({
                title: "Abbott Molecular",
                content: pageWithVideo
            }).show();

            // Don't follow the link
            return false;

        });
    });



});
