function init_dropdown() {

  if (! $('ul.dropdown').length) { return; }

  $('ul.dropdown li.dropdown_trigger').hover(function () {
    $(this).find('ul').fadeIn(1);
  },
  function() {
    $(this).find('ul').hide();
  });
}

$(document).ready(function() {
  init_dropdown();
});

