$(document).ready(function() {
    $('a.usericon').click(function() {
	var photo = $(this).parent().children('a').children('img.userphoto')
	$(photo).fadeTo('fast', 0.33);
	$(this).children('img.icon').fadeTo(100, 0.1).fadeTo('slow', 1);
	$(photo).attr('src', $(this).attr('thumb'));
	$(photo).parent('a').attr('href', $(this).attr('href'));
	$(this).parent().children('.photocomment').text($(this).attr('comment'));
	$(photo).load(function() {
	    $(this).fadeTo('fast', 1);
	});
	return false;
    });
});
