$(function(){	
	var galleries = $('.ad-gallery').adGallery({
				loader_image: '',
				width: 600,
				thumb_opacity: 0.7,
				start_at_index: 0,
				animate_first_image: false,
				animation_speed: 400,
				display_next_and_prev: false,
				display_back_and_forward: true,
				scroll_jump: 0,
				start_label: '',
				stop_label: '',
				slideshow: {
					enable: true,
					autostart: true,
					stop_on_scroll: true
				},
				effect: 'fade',
				enable_keyboard_move: true,
				cycle: true,
				callbacks:{
					init: function(){
						this.preloadAll();
					},
					afterImageVisible: function(){
						var context = this;
						this.loading(true);
						this.preloadImage(this.current_index + 1, function(){
							context.loading(false);
						});
						var currentIndexClass = ".image" + this.current_index;
						$(".ad-description-title").attr("value", $(currentIndexClass).attr("value"));
					}
				}
			});
	$(".ad-slideshow-controls").hide();
	$(".ad-loader").css("visibility", "hidden");
	
	$(".ad-description-title").live("click", function(){
		window.location.href = $(this).attr("value");
		return false;
	});
});