
$(document).ready(function() {
$('.dgallery_link').children('div').hide();
    $('.gallery_link').click(function() {
      $(this).parent('div').children('div').load($(this).attr('href'), function() {
        $(this).parent('div').children('div').slideToggle("slow");
        return false;
	});
      return false;
    });
});

