jQuery.fn.stylizeH4 = function() {
    return this.each(function(){

        //value is the text in the button
        var id = this.id;
        var value = $(this).html();
        var style = $(this).attr("stylizeClass");

        if($(this).attr("stylizeAction") == "H4"){
             var content = "<div class='H4-l'><div class='H4-r'><h4 class='"+style+"' id='"+id+"'>"+value+"</h4></div></div>";
            $(this).html(content);
        }
    });
};

$(document).ready(function(){
    $('.hache4').stylizeH4();
});
