$(document).ready(function() {
    $('.likeFb').each(function(i) {
        lien = $(this).html();
        $(this).replaceWith('<iframe src="http://www.facebook.com/plugins/like.php?href=' + lien + '&amp;layout=button_count&amp;show_faces=false&amp;width=100&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>').fadeIn();
    });
    $('.twitterBouton').each(function() {
        lien = $(this).find('.twitterLien').html();
        titre = $(this).find('.twitterTitre').html();
        $(this).replaceWith('<a href="http://twitter.com/share" class="twitter-share-button"data-url="' + lien + '" data-text="' + titre + '" data-count="horizontal" data-via="linkinparkfr" data-related="linkinpark" data-lang="fr">Tweet</a>')
    });
    $('.boutonGoogle').each(function() {
        lien = $(this).html();
        $(this).replaceWith('<g:plusone size="medium" href="' + lien + '"></g:plusone>');
    });
});
