$(document).ready(function() {
  $(document).pngFix();
  //Activate FancyBox
  $("p#single a").fancybox({
	'hideOnContentClick': true
  });
		
  $("p#gallery a").fancybox({
	'zoomSpeedIn':  0, 
	'zoomSpeedOut': 0, 
	'overlayShow':  true
  });
		
  $("a#custom").fancybox({
	'itemLoadCallback': getGroupItems
  });
		
  $("a#video, a#frame").fancybox({
	'zoomSpeedIn':  0, 
	'zoomSpeedOut': 0
  });
});

//List can contain mixed media too
//Parameter "o" ir optional and used to override settings, example: {url: "http://www.google.com", title: false,  o: {'frameWidth': 200} }
var imageList = [
  {url: "images/07-1.jpg", title: "Первая картинка"},
  {url: "images/07-2.jpg", title: "Вторая картинка"},
  {url: "images/07-3.jpg", title: "Третья картинка"}
];
	
function getGroupItems(opts) {
  jQuery.each(imageList, function(i, val) {
	opts.itemArray.push(val);
  });
}