Event.observe(window, 'load', function() 
{
	var animating = false, effect_in = false, effect_out = false; 
	$('all').insert({ 'before': '<div id="facebook"><iframe src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FPlakatXXLpl%2F127776680574569&amp;width=185&amp;colorscheme=light&amp;show_faces=true&amp;border_color&amp;stream=false&amp;header=true&amp;height=381" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:185px; height:381px;" allowTransparency="true"></iframe></div>' });
    Event.observe($('facebook'), 'mouseover', function() 
	{
		if(typeof effect_out == 'object') { effect_out.cancel(); } 
		effect_in = new Effect.Morph('facebook', { style: { right: '0px' }, transition: Effect.Transitions.sinoidal });
	}); 
	Event.observe($('facebook'), 'mouseout', function() 
	{
		if( typeof effect_in == 'object' ) { effect_in.cancel(); } 
		effect_out = new Effect.Morph('facebook', { style: { right: '-195px' }, transition: Effect.Transitions.sinoidal }); 
	}); 
});
