window.addEvent('domready', function() {
$(document.body).getElements('span.photo_mini').each(
	function(item){
		item.addEvent('click', function(i){
			$('current').setStyle('font-weight','normal');
			$('current').removeProperty('id');
			item.getElement('span').setProperty('id' , 'current')
			item.getElement('span').setStyle('font-weight','bold');
			req.send({url:'http://hostelsinkrakow.pl/get_images/'+item.getProperty('id'), method: 'get'});
		});
 	});
	var req = new Request.HTML({
		onSuccess: function(html) {
			$('big_photo').set('text', '');
			$('big_photo').adopt(html);
		}

	});
});