//JAVASCRIPT DOCUMENT

jQuery(document).ready(function($) {
	$('.fBox').click(function() {
		var container = $(this).attr('id').split('-')[0];
		var imgLink = $(this).attr('href');
		var imgSrc = $('#'+container).html();
		var alt = $('#'+container+'-thumb').attr('alt');
		var caption = '<p class="imgCapt">'+alt+'<br /><a href="'+imgLink+'" target="_blank" title="Click to view this image in the gallery">View this image in the gallery</a></p>';
		var linkedImg = imgSrc+caption;
		$.fancybox(linkedImg, {
			'onStart':function() {	
				$('html').css('overflow','hidden');
				$('body').css('overflow','scroll');
			},
			'onComplete':$.fancybox.resize,
			'onClosed': function (){
				$('html').css('overflow','auto');
				$('body').css('overflow','auto');
			},
			'transitionOut':'none'
		});
		return false;
	});
});
