// JavaScript Document
$(document).ready(function(){
    $(".leftnav_sub").parents("li").hover(
      function () {
        $(this).children("ul").show();
      }, 
      function () {
        $(this).children("ul").hide();
      }
    );
 });

