 $(document).ready(function() {
   $('#loc-title a').click(function(e){
     e.preventDefault();
     $(this).blur();
     $('#loc_cont').toggle();
   });
 });