﻿/// <reference path="jquery-1.3.2-vsdoc.js" />

$(document).ready(function() {

    //$(".CategoryUnsortedList").tagcloud({ type: "list", sizemin: 12, sizemax: 32, colormax: "3973B7", colormin: "9CBCDC" }).find("li").tsort();

    $(".CategoryListContent1").hide();
    $("#MainContent input[type=radio]").click(function() {
        var rdoSelection = $("#MainContent input[type=radio]:checked").val();
        if (rdoSelection == '0') {
            $(".CategoryUnsortedList li").each(function() {
            $(this).css("font-size", $(this).attr("bcfs") + "px");
            });
        }
        else {
            $(".CategoryUnsortedList li").each(function() {
            $(this).css("font-size", $(this).attr("popfs") + "px");
            });
        }
    
    
    });
});
