$(document).ready(function(){
	
	$('.PhotoGallery li a').click(function(){
		
		$('.PhotoGallery h2').text($(this).text());
		$('.PhotoGallery .List a').removeClass('Selected');
		$(this).addClass('Selected');
		
		$.getJSON(Preferences.Location + '/gallery/getphotos/' + $(this).attr('href').substr(1), function(Data)
		{			
			$('.Photos #GContainer').remove();
			$('#PhotoLoading').fadeIn();
			
			var Con = $('<div id="GContainer"></div>');
			
			for(Index in Data)
				$(Con).append(
					$('<a class="Zoom GalleryImage"></a>')
					.attr('href', Preferences.Location + '/../userdata/photos/' + Data[Index])
					.css('background-image', 'url(' + Preferences.Location + '/../userdata/photos/small/' + Data[Index] + ')')
				);
			
			$('.Photos').append(Con);	
			$('#PhotoLoading').hide();	
			$('.Photos a.Zoom').lightBox(
				{	
					imageLoading: Preferences.Location + '/images/lightbox/loading.gif',
					imageBtnClose: Preferences.Location + '/images/lightbox/close.gif',
					imageBtnPrev: Preferences.Location + '/images/lightbox/prev.gif',
					imageBtnNext: Preferences.Location + '/images/lightbox/next.gif',
					containerResizeSpeed: 350
				}
			);			
		});
	});
	
	$('.PhotoGallery li a:first').click();
})
