
$(document).ready(function() {
  $('.leftside ul.menu li.extendable').hover(
    function () {
      $(this).addClass('open').children('ul.menu:first').show();
    },
    function () {
      $(this).removeClass('open').children('ul.menu').hide();
    }
  );
});


