

var lastlen = 0;

jQuery(document).ready(function($) {
	$("#facebook-right").hover(
	function right(){
		$(this).animate({ right: "0" }, {queue:false, duration:"normal"} );
	},
	function right(){
		$(this).animate({ right: "-243" }, {queue:false, duration:"normal"} );
	});
	
	$("#facebook-left").hover(
	function(){
		$(this).animate({ left: "0" }, {queue:false, duration:"normal"} );
	},
	function(){
		$(this).animate({ left: "-243" }, {queue:false, duration:"normal"} );
	});
	
});
