﻿$(function(){
	$('ul#pic-list a').click( function() {
		$(document).find('#photo-gallery').html('<img src="images/loadingAnimation.gif" style="margin:50px 0 0 25px; />');
		var piclistid = $(this).attr("id");
		var gallerytitle = $(this).html();
		$.post("get-pictures.php",{ picId: piclistid, gallery: gallerytitle },function(txt){
			//var testit = $(this).parent().id();
			//alert (testit);
			$(document).find('#photo-gallery').html(txt);
			$('a.thickbox').bind("click", function(){
				var t = this.title || this.name || null;
				var a = this.href || this.alt;
				var g = this.rel || false;
				tb_show(t,a,g);
				this.blur();
				return false;
			});
		});
		return false;
	});
});