$(document).ready(function($) {
      var anchors;
      var i = 0;
      var j = 0;
      $("#text").each(function() {
        anchors = $(this).find("a[href*='images/']");
        if(anchors.size()) {
          anchors.attr("rel","group" + i++);
          anchors.each(function() {
            $(this).attr("title",$(this).find("img").attr("title"));
          });
          anchors.fancybox({
            'titleShow'         : true,
            //'titlePosition'     : 'inside',
            'transitionIn'      :	'elastic',
            'transitionOut'     :	'elastic',
            'speedIn'           :	600,
            'speedOut'          :	200,
            'overlayColor'      :  '#000',
            'overlayOpacity' :  0.2
          });
        }
      });
      $("#text ul").each(function() {
        anchors = $(this).find("a[href*='pictures/']");
        if(anchors.size()) {
          anchors.attr("rel","group" + i++);
          anchors.each(function() {
            $(this).attr("title",$(this).find("img").attr("title"));
          });
          anchors.fancybox({
            'titleShow'         : true,
            //'titlePosition'     : 'inside',
            'transitionIn'      :	'elastic',
            'transitionOut'     :	'elastic',
            'speedIn'           :	600,
            'speedOut'          :	200,
            'overlayColor'      :  '#000',
            'overlayOpacity' :  0.2
          });
        }
      });
});
