$(document).ready(function() {
	
	$('a[href^=/site/upload/Image/]').click(function(event){
		event.preventDefault();
		event.stopPropagation();
		
		var popup = window.open('/photo-preview/', 'photopreview', '');
		window.lastOpenedPhotoPreviewURL = popup.photoURL = this.href;
	});
	
});
