/**
* 
*/
$(function(){
    $("input.uf, textarea,").uniform();
    $(".js_inputLabeled").labelingInputs();
    /**
* Code for margin left of text
*/
    var contentImage = $("img.block_content_image");
    contentImage.each(function(){
        var ancho = $(this).width() + 20;
        var texto = $(this).parent().find(".block_content_text")
        $(texto).css("margin-left", ancho + "px");
    });
});




