$(document).ready(function(){
    
    $(".toggleme").click(function () {
      $(".togglemin").toggle();
    });

  });

