$(function () {
	
	   $(".close").click(function () {
  
   
      if (parseInt( $(".customize-l").css('right') ) == 0 )
      {
         $(".customize-l").addClass('act').animate({
            right: "-140px"
         }, {
            duration: 500,
            complete: function () {
            }
         });
      }
      else
      {
         $(".customize-l").removeClass('act').animate({
            right: "0px"
         }, {
            duration: 500,
            complete: function () {
            }
         });
      }
      return false;
   });
	
});
