Can You Toggle Scale & Bounce Using JQuery?

Can You Toggle Scale & Bounce Using JQuery?

I'm working on my administration panel which has a side bar attached to the top bar. The side bar can be minimized and upon doing so it will animate left and then bounce. Upon doing so, there is no longer the same space available for the logo of which I would like to also bounce, scaling from the top middle of the div.

HTML
  1.     <div class="PannelLogo">
  2.         <a href="Panel Home Link"></a>
  3.     </div>
CSS
  1. .PannelLogo {
  2. position:absolute;
  3. margin:5px;
  4. height: 137px;
  5. width: 210px;
  6. z-index:9999;
  7. }
  8. .PannelLogo a {
  9. position:absolute;
  10. width:210px;
  11. height:137px;
  12. background:url(Logo.png) no-repeat;
  13. z-index:9999;
  14. }

For my side bar, this is how I animate and bounce;
  1. $('#MinimizeSideBar').click(function() {
  2. var SideBarWidth = $(".SideNav").width() == 236 ? "46" : "236";
  3. $('.SideNav').animate({ width: SideBarWidth + "px" }, {duration: 1000, easing: 'easeOutBounce'});
  4. $('.Menu').toggleClass("Open Closed");
  5. });
How would I achieve a scale bounce to my logo?