$(function(){
	$('div.image-fl').each(function(){
		imgWidth = $(this).children('img').width();
		imgWidth += 4;
		$(this).css('width', imgWidth);
	});
	$('div.image-fr').each(function(){
		imgWidth = $(this).children('img').width();
		imgWidth += 4;
		$(this).css('width', imgWidth);				
	});
	
	$('div.photocase').each(function(){
		imgWidth = $(this).children('img').width();
		imgWidth2 =  $(this).children('a').children('img').width();
		var pWidth = Math.max(imgWidth, imgWidth2);
		pWidth += 4;
		$(this).css('width', pWidth);				
	});	
});   
Cufon.replace('div#cufon');