jQuery(document).ready(function($) { 
  $('#block-views-resources-block-2 .attachment .views-view-grid a,#block-views-resources-video-player-block-2 .attachment .views-view-grid a').click(function() {
    var href = $(this).attr('href');
    var title = $(this).parent().parent().parent().find('.views-field-field-title .field-content').html();
    var description = $(this).parent().parent().parent().find('.views-field-field-long-description .field-content').html();

    $('.video-title').html(title);
    $('.video-long-description').html(description);

                        $('#jquery_jplayer_1').jPlayer("setMedia", {
                                m4v: href,
                                poster: ""
                        }).jPlayer("play");

    return false;
  });
});
;
jQuery(document).ready(function($) {
});
;

