$(document).ready(function() {
	$('.boxfotominanchor').click(function() {
			$('#img').remove();
			$('#content1').hide();
			var idboxa=this.parentNode.parentNode.id;	
			var adres = $(this).find('img').attr('src').replace('/thumbnail/', '/full/');
			var duzy = $('<img id="img"/>');
	
			$("#boxcontentbottom").append(duzy);
			$("#img").attr('src', adres);
	
			$('#krzyzyk').show();
		
		});
	
	
		$('#krzyzyk').click(function() {			
			$('#img').remove();
			$('#content1').show();
			$('#krzyzyk').hide();		
		});
});
