var j = jQuery.noConflict();

j(document).ready(function(){
var str = j("body").html();
var code = '<div id="fblikeboxleft" style="width:200px;height:100%;position:fixed;;left:-200px;background:#3b5998;text-align:center;"><div id="fbcontentleft" style="width:220px;height:320px; margin: 7px; margin-top: 180px; "><iframe name="fb" src="http://www.facebook.com/plugins/likebox.php?href=http://www.facebook.com/pages/Kajaki-slupia/145594252169818&amp;width=185&amp;colorscheme=light&amp;show_faces=true&amp;stream=false&amp;header=false&amp;height=320" scrolling="no" frameborder="0" style="background:#FFF; border:none; overflow:hidden; width:185px; height:400px; float: left;" allowTransparency="true"></iframe><img src="wp-content/plugins/likebox/fblikeboxleft.png" id="fbimgleft" alt="" class="likelogo" style="top:260px;display:block; position: absolute; left: 200px;" /></div></div>';

j("body").html(code);

j("body").append(str);

j("#fblikeboxleft").hover(
    function(){j(this).stop(true,false).animate({left: 0}, 500);},
    function(){j("#fblikeboxleft").stop(true,false).animate({left: -200}, 500);}
);

});
