jQuery("document").ready(
    function(){
        //Rounded FeaturedCommunity Corners
        var Width = 193, Height = 129;
        jQuery("div.AddCorners").append(
            //TL
                '<div class="Rounded50" style="left: 0px; top: 1px;" />' +
                '<div class="Rounded100" style="left: 0px; top: 0px;" />' +
                '<div class="Rounded50" style="left: 1px; top: 0px;" />' +
            //TR
                '<div class="Rounded50" style="left: ' + (Width - 2) + 'px; top: 0px;" />' +
                '<div class="Rounded100" style="left: ' + (Width - 1) + 'px; top: 0px;" />' +
                '<div class="Rounded50" style="left: ' + (Width - 1) + 'px; top: 1px;" />' +
            //BR
                '<div class="Rounded50" style="left: ' + (Width - 1) + 'px; top: ' + (Height - 2) + 'px;" />' +
                '<div class="Rounded100" style="left: ' + (Width - 1) + 'px; top: ' + (Height - 1) + 'px;" />' +
                '<div class="Rounded50" style="left: ' + (Width - 2) + 'px; top: ' + (Height - 1) + 'px;" />' +
            //BL
                '<div class="Rounded50" style="left: 1px; top: ' + (Height - 1) + 'px;" />' +
                '<div class="Rounded100" style="left: 0px; top: ' + (Height - 1) + 'px;" />' +
                '<div class="Rounded50" style="left: 0px; top: ' + (Height - 2) + 'px;" />'
        );
    }
);