
  function movepic(img_name,img_src) {
      document[img_name].src=img_src;
  }

  function growUp($element){
      $element_org=$element;
      $height_start = parseInt($($element_org).height());
      $($element).slideDown(1500);
      $height_start=parseInt($height_start/18);
      $($element).animate({
  height: '-='+$height_start
  }, {
    duration: 700,
    specialEasing: {
      height: 'easeOutBack'
    }
  });
   $($element).animate({
    height: '+='+parseInt($height_start*0.6)
  }, {
    duration: 700,
    specialEasing: {
      height: 'easeOutBack'
    }
  });
     $($element).animate({
    height: '-='+parseInt($height_start*0.3)
  }, {
    duration: 700,
    specialEasing: {
      height: 'easeOutBack'
    }
  });
  }

    function startup(){
        $("#violet_bio").fadeIn(1500);
        $("#blue_bio").fadeIn(1500);
        $("#orange_bio").fadeIn(1500);
        $("#pink_bio").fadeIn(1500);
        $("#blank_bio").fadeIn(1500);
        $("#violet_bio").draggable();
        $("#blue_bio").draggable();
        $("#orange_bio").draggable();
        $("#pink_bio").draggable();
        $("#blank_bio").draggable();
        $("#mirror").animate({
            height: '+='+47
        }, {
            duration: 1500,
            specialEasing: {
                height: 'easeOutBack'
            }
        });
        growUp("#bar1");
        growUp("#bar2");
        growUp("#bar3");
        growUp("#bar4");
        growUp("#bar5");
        growUp("#bar6");
        growUp("#bar7");
        growUp("#bar8");
        growUp("#bar9");
        growUp("#bar10");
        growUp("#bar11");
  }