/*
Found on Peter VELICHKOV Website
http://blog.creonfx.com/javascript/wordpress-video-galleries-with-nextgen-and-jquery
Thanks to him
*/
jQuery(document).ready(function($){
  $("a").each(function (arr){
    if ($(this).children("img").attr("rel")=="shadowbox"){
      $(this).attr("rel","shadowbox");
      //$(this).attr("href",$(this).children("img").attr("title"));
    }
  })
});

