
$(document).ready(function(){
// redirect user to the proper page when clicking on the button    
            $(".menuitem").click(function(){
                window.location = $("a", $(this)).get(0);
            });
    
});
