$(document).ready(function() {
  $('li.parent').click(function() {
    $('ul.vnorene', $(this)).css('display','block');
  });
});