﻿/* crate tag cloud */
(function (jQuery) {
    jQuery.fn.TagCloud = function () {
        this.find("a").each(function () {
            var step = parseInt($(this).attr("rel"));
            step = (step / 10) + 1;
            $(this).css("font-size", step + "em");
        });
    };
})(jQuery);
