$(function() {
	 

	FancyBoxes();
	
	$(".PriceShower").fancybox({
		'modal' : true,
		'width' : '800',
		'scrolling' : 'no',
		'padding' : '15'
	});
  
	
	$('#whyscanphotostabs').tabs();


	});



	
		function FancyBoxes() {
			
							$("a[rel=fancybox]").fancybox({

									'width'				: '95%',
									'height'			: '95%',
									'padding'			: 0,
									'margin'			: 0,
								'transitionIn'		: 'none',
								'transitionOut'		: 'none',
								'titlePosition' 	: 'inside',
								'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
									return '<span>' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
								}
							});

		}
		
		
		
