﻿$(document).ready(function() {
	$(".aa-gallery").fancybox({
		'overlayColor': '#fff',
		'padding': 10,
		'autoScale': false,
		'transitionOut': 'none',
		'titlePosition': 'inside',
		'titleFormat': formatAATitle
	});
});

//var strProduct1 = "Nikon D3100 Camera";
//var strProduct1URL = "http://www.nikonusa.com/Nikon-Products/Product/Digital-SLR-Cameras/25472/D3100.html";
//var strProduct2 = "AF-S DX Zoom-Nikkor 18-55mm";
//var strProduct2URL = "http://www.nikonusa.com/Nikon-Products/Product/Camera-Lenses/2170/AF-S-DX-Zoom-NIKKOR-18-55mm-f%252F3.5-5.6G-ED-II.html";

function formatAATitle(title, currentArray, currentIndex, currentOpts) {
	var strCaption = $('.aa-caption-wrapper').html();
	strCaption = strCaption.replace("{title}", title);
	//strCaption = strCaption.replace("{product1}", strProduct1);
	//strCaption = strCaption.replace("{product1url}", strProduct1URL);
	//strCaption = strCaption.replace("{product2}", strProduct2);
	//strCaption = strCaption.replace("{product2url}", strProduct2URL);
	return strCaption
}




$(document).ready(function() {
	$(".rrps-gallery a").fancybox({
		'overlayColor': '#fff',
		'padding': 10,
		'autoScale': false,
		'transitionOut': 'none',
		'titlePosition': 'inside',
		'titleFormat': formatRRPSTitle
	});
	$('.rrps-caption-equipment').each(function(index, value) {
		if (($(this).find('.rrps-caption-equipment-1').html().length) > 0) {
			$(this).html("Equipment: " + $(this).html())
		}
	});
	$('.rrps-caption-photographer').each(function(index, value) {
		if (($(this).html().length) > 0) {
			$(this).html("Photographer: " + $(this).html())
		}
	});
});
function formatRRPSTitle(title, currentArray, currentIndex, currentOpts) {
	var strCaption = $('#rrps-caption-' + (currentIndex + 1)).html();
	return strCaption;
}
