 $(document).ready(function(){
	 $('#searchLink').click(function () {
		 if($("#moveOutForm").css("left") == "-500px"){
			 $('#searchLink').css({'background-image':'url(/catalog/view/theme/newfort/image/linkArrLeft.jpg)'});
			 $('#moveOutForm').show();
			 $('#moveOutForm').animate({left:'220', opacity:1}, 3000);
			 $('#mofPlane').show();
			 $('#mofPlane').animate({left:'+=780'}, 3000);
			 $("#mofPlane").animate({opacity: 0}, 1000);
		 } else if($("#moveOutForm").css("left") == "220px"){
			 $('#searchLink').css({'background-image':'url(/catalog/view/theme/newfort/image/linkArrDown.jpg)'});
			 $("#moveOutForm").hide();
			 $("#moveOutForm").css({left:"-500px", opacity:0});
			 $("#mofPlane").animate({opacity:1});
			 $("#mofPlane").hide();
			 $("#mofPlane").css({left:"220px",opacity:1});
		 }
	 })
 })
