jQuery(document).ready(function() {
	

 $("a[href*=/content/gallery]").click(function() {
     // do something with all links that point somewhere to /content/gallery
   });


$('#faq').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });



});
