jQuery.noConflict();
jQuery(document).ready(function($){
 var galleryAnchor=$('.photogallery-big h2 a.h2');
 galleryAnchor.toggle(function(){
   $(this).attr('class','h2 selected');
   $(this).parent('h2').next('.hidden-images').slideDown('fast');
   $(this).parent('h2').next('.shown-images').slideDown('fast');
  },function(){
   $(this).attr('class','h2');
   $(this).parent('h2').next('.hidden-images').slideUp('fast');
   $(this).parent('h2').next('.shown-images').slideUp('fast');
  }
 )

 /*var textAnchor=$('.common-text h2 a.h2');
 textAnchor.toggle(function(){
   $(this).attr('class','h2 selected');
   $(this).parent('h2').next('.hidden-text').slideDown('fast');
   $(this).parent('h2').next('.shown-text').slideDown('fast');
  },function(){
   $(this).attr('class','h2');
   $(this).parent('h2').next('.hidden-text').slideUp('fast');
   $(this).parent('h2').next('.shown-text').slideUp('fast');
  }
 )*/

})
