/*
 * RoCo 2.0 - Rounded Corners
 * Powered by jQuery
 * by Michele Bertoli
 * havana7.com/RoCo
 */

var element;
$(function() {
    $(".RoCo").each(function(i) {
        element = $(this);
        $.each(["ctl", "cbl", "ctr", "cbr"], function(i, bull) {
            $(element).append("<em id='" + bull + "'></em>");
            $('#' + bull, $(element)).css({
                color: $(element).css("background-color"),
                background: $(element).parent().css("background-color")
            }).append("<b>&bull;</b>");
        });
    });
});
