$.elementReady("related_video_listing", function() {


if ($('#related_video_listing') ){
 
  $('input.related_video').each(function(){
       if ( $(this).val() == $('input.current_video').val() ) $(this).parent('div').remove();
  });
       if ( $('div.video-item').length == "0") { $('div.video-listing h2').after('<br /><p><i>There are no videos related to this article</i></p>');}
};

});

$(document).ready(function(){

/* Video Article */
/* remove a class to every elements that are in a third column on videos listing */
  var div_counter = 0;
  $('div.video-item').each(function(){
     div_counter++;
     if ( div_counter%3 == 0){
        $(this).removeClass('video-item-margin-right');
     };
  });



});