// JavaScript Document
$(function () {
			var tabContainers = $('div#gallery > div.gallery_wrapper');
			tabContainers.hide().filter(':first').show();
			
			$('div#gallery ul.nav a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div#gallery ul.nav a').removeClass('active');
				$(this).addClass('active');
				return false;
			}).filter(':first').click();
		});
