$(document).ready(function(){
    if($('.videos').is('.videos')){
        var aTags = $('.videos a');
        aTags.each(function(index, aTag){

                $(aTag).click(function(e){
                    e.preventDefault();
                    var url = $(aTag).attr('href');
                    var windowprops = "width=846,height=430,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
                    window.open(url, "", windowprops);
                });
            
        });
    }
    $('.intro-video-button a').click(function(e){
            e.preventDefault();
          var url = $(this).attr('href');
          var windowprops = "width=590,height=330,location=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
          window.open(url, "", windowprops);
    });
});