$(function(){
	$('#moreInfo > li h2').click(function(){
		var nextUL, siblingLI;
		nextUL = $(this).next('ul');
		siblingLI = $(this).parent('li').siblings('li');
		siblingLI.find('a').removeClass('active');
		if (nextUL+":hidden") {
			$(this).children('a').toggleClass('active');
			nextUL.toggleClass('displayNone');
		}
		siblingLI.children('ul').addClass('displayNone');
		return false;
	});
	
});

// $j('#photography li a').click(function(){
// 	var href = $j(this).attr('href');
// 	$j('#myGallery').load(href+" #myGallery > div",startGallery);
// 	$j('#photography li a').removeClass('active');
// 	$j(this).addClass('active');
// 	return false;
