$(document).ready(function(){

  $('.flickr-image').each(function() {			
		$(this).wrap('<span class="image-box"></span>');		
	});


	$('.image-box').each(function() {
		
		box = $(this);
		img = box.find('img');		
		link = box.find('a');
		src = img.attr('src');
		
		box.css('background-image', 'url(' + src + ')');				
		
		img.hide();

		w = img.width();
		h = img.height();
		
		box.width(w);		
		box.height(h);
					
		if (link != 'undefined')
		{
			link.width(w);
			link.height(h);
		}
		
	});

});
