$(document).ready(function(){
	var fb_box = $('\
	<div id="fbbox" style="position: fixed; top: 50%; right: 0; z-index: 999;width: 292px; height: 427px; margin-top: -214px; margin-right: -292px; background: #eef;">\
		<div id="fbbutton" style="margin-left: -30px; background: #444197 url(/images/facebooklogo.png) no-repeat 0 0; width: 30px; height: 80px; float: left;"></div>\
		<div style="float: left; width: 292px; height: 427px;">\
		<iframe src="http://www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2FInchcapeMotorPolska&amp;width=292&amp;colorscheme=light&amp;show_faces=false&amp;stream=true&amp;header=true&amp;height=427"\ scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:427px;" allowTransparency="true"></iframe>\
		</div>\
	</div>');
	fb_box.find('#fbbutton').mouseenter(function(){
		fb_box.stop().animate({
			marginRight: 0
		},200);
	});
	fb_box.mouseleave(function(){
		fb_box.stop().animate({
			marginRight: -292
		},200);
	});
	$('body').append(fb_box);
});
