	$(document).ready(function () {
					 $("#face-all").animate({opacity: 0.25},350 );
									 $("#facebook").mouseover(function() {
																 $("#facebook").stop();
																 $("#facebook").animate({
																				 right: "0"
																				 },350
																				 );
																 });
									 $("#facebook").mouseout(   
														  function() {
																   $("#facebook").stop();
																   $("#facebook").animate({
																				  right: "-360"
																				  }, 350
																				  );
																				  });
									 
									 })

