		$(document).ready(function(){
			$("#fb-box").hover (
				function() {
					$("#fb-box").stop(true, false).animate({marginLeft: "-390"}, "medium");
				},
				function() {
					$("#fb-box").stop(true, false).animate({marginLeft: "-50"}, "medium");
				},
				500
			);
		})
