$(document).ready(function ($) {
	$('.gallery').click(function (e) {
		
		e.preventDefault();
		
		var src = $(this).attr('href');
		
		$.ajax({
			url: src,
			cache: false,
			success: function(data) {
				$('#content').find('#gallery').remove();
				$('body').find('.tooltip').remove();
				$(data).filter('#gallery').appendTo('#content');
				$('#gallery').modal({
					closeHTML:"",
					containerCss:{
						backgroundColor:"#fff",
						borderColor:"#fff",
						height:450,
						padding:0,
						width:620
					},
					overlayClose:true
				});
				$('#gallery').slideView();
			}
		});
	});
});
