/* Helper for the left menu, when clicking a li the enclosed a's href  will be called */ 
$(document).ready(function() {
          $("div.menubar ul li").click(function(){
          document.location=$(this).children("a")[0].href;
          });
        });
