// JavaScript Document
$(document).ready(function() {
	$("a.showTRPics").click(function() {
		var itemID = $(this).attr('id').substr(4);
		if ($('#photos_'+itemID).css('display') == 'none') { 
			if ($('#photos_'+itemID).hasClass('shown')) { 
				$('#photos_'+itemID).show();
			}
			else { 
				$.post("/ajax/ajax-loadpictures.php", { record_id:itemID },
					function(data){
					if (data) {
						$('#photoCell_' + itemID).html(data);
						$('#photos_'+itemID).show();
						$('a.fancybox').fancybox();
						$('#photos_'+itemID).addClass('shown');
					}
				});
			}
		}
		else { 
			$('#photos_'+itemID).hide();
		}
		return false;
	});
});




