var $gallery_tmpl_work_description;
$(function() {
  $gallery_tmpl_work_description = $('#tmpl_work_description');
  // Initiate gallery
	var galleries = $('.ad-gallery').adGallery({
		description_wrapper : $('#descriptions'),
		animate_first_image : true,
		slideshow : {
			enable : false
		},
		effect : 'slide-hori', // or 'slide-vert', 'resize', 'fade', 'none' or false
		enable_keyboard_move : true, // Move to next/previous image with keyboard arrows?
		cycle : false, // If set to false, you can't go from the last image to the first, and vice versa
		thumb_opacity: 0.55, // Opacity that the thumbs fades to/from, (1 removes fade effect)
                        // Note that this effect combined with other effects might be resource intensive
                        // and make animations lag
	});
});

