$(function() {

		  var galleries = $('.ad-gallery').adGallery();
		  $('#switch-effect').change(
		    function() {
		      galleries[0].settings.effect = $(this).val();
		      return false;
		    }
		  );
		  $('#toggle-slideshow').click(
		    function() {
		      galleries[0].slideshow.toggle();
		      return false;
		    }
		  );
		  
		 $('div.gal_info').hover(function(){
			
					$(this)
					.css({ backgroundColor: "#26073a", cursor: "pointer" })
					.children('a').children('img').css({ opacity: 1 });
		
			}, function(){
			
					$(this).css({ backgroundColor: "#190825" })
					.children('a').children('img').css({ opacity: 0.8 });;
			
			}).click(function(){
			
				var urltogo = $(this).children('a').attr('href');
				window.location.href = urltogo; 
			
			});		  
		  
});