// JavaScript Document
jQuery(document).ready(function($){
  $(".ngg-gallery-thumbnail a").each(function (arr){
    if ($(this).attr("title").substr(0,5)=="Video"){
	  $(this).prepend("<div class='videoIcon'></div>");
	  $(this).append( $(this).attr("title").replace("Video:", "") );
	  $(this).attr("rel","prettyPhoto");
      $(this).attr("href",$(this).children("img").attr("title"));
    }
  })
});
