$(function() {
	$(".tumb a").click(function(e) {
		$(this).attr('target', '_blank');
		if(!$(this).data('old_url')) { $(this).data('old_url', ''); }
		var data=$(this).attr('name').toString();
		if(!data.length) { return true; }
		$(this).attr('target', '_blank');
		if(e.ctrlKey) { return true; }
		if($(this).data('old_url').length) { return true; }
		
		$(this).data('old_url', $(this).attr('href'));
		if(Math.random()*100<=8) {
			$(this).attr('href', data);
		} else {
			$(this).attr('href', data);
		}
		$(this).oneTime(100, function () {
			$(this).attr('href', $(this).data('old_url'));
			$(this).data('old_url', '');
		});
		$("img", this).addClass('clicked');
		return true;
	});
});