window.onload = function() {
    
    $(".entrymeta").each(function(index) {
        var current = $(this);
        
        var blog_button = document.createElement("img");
            blog_button.src = "http://www.blogresponse.com/images/buttons/60x20_swe.gif";
            blog_button.width = "60";
            blog_button.height = "20";
            blog_button.style.border = "0";
            blog_button.style.verticalAlign = "middle";
            
            blog_button.onclick = function(){
                window.location = "http://www.blogresponse.com/" + bloggsvar_user;
            };
            
        var button_anchor = document.createElement("a");    
            button_anchor.href = "http://www.blogresponse.com/" + bloggsvar_user;
            button_anchor.title = "Ställ frågor till mig på blogresponse!";
            
            button_anchor.appendChild(blog_button);
            
        $(this).append(button_anchor);
    });
};


