$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	initShowPhotos();
});

function initShowPhotos()
{
	$(".photos-clickable").click(function(){
		$("#photos-container").load($(this).attr("rel"),{},function (tt){
				initShowPhotos();
				tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
				imgLoader = new Image();// preload image
				imgLoader.src = tb_pathToImage;		
			});
		return false;
	});
}
