jQuery(document).ready(function($){
  $(".ngg-gallery-thumbnail a, .ngg-widget a").each(function (arr){
    if ($(this).attr("title").substr(0,5)=="Video"){
      $(this).attr("rel","shadowbox;width=640;height=385");
	  $(this).children("img").attr("alt",$(this).attr("title"));
      $(this).attr("href",$(this).children("img").attr("title"));
      $(this).children("img").attr("title",$(this).attr("title"));
    }
  })
});