  $(function() {
    $('#ifs').toggle(
        function(){
            $(this).stop().animate({ "width": 670, "height": 870 }, 1500);
        },
        function(){
            $(this).stop().animate({ "width": 360, "height": 468 });
        }
    );
  });