$(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);				
	});
});   
Cufon.replace('div#cufon');