        	jQuery( document ).ready(function() {
        		jQuery('.youtubeVideo').each(function() {
        		  if (jQuery(this).width() < 600){
        		  	jQuery(this).addClass( 'small' );
        		  } else{
        				jQuery(this).removeClass('small')
        			}
        		});
        	});
        	jQuery(window).resize(function(){
        	  jQuery('.youtubeVideo').each(function() {
        		  if (jQuery(this).width() < 600){
        		  	jQuery(this).addClass( 'small' );
        		  } else{
        				jQuery(this).removeClass('small')
        			}
        		});
        	});