(function($) {
  $(function() {
    
    /* Handle drop down/up */
    $('.drop-down').click(function() {
      var ul = $(this).children('ul');
      if(ul.is(".down")) {
        ul.removeClass('down');
      } else {
        $('.drop-down ul').removeClass('down'); /* roll up all other drop downs */
        ul.addClass('down');
      }
    })
    
    /* Handle clicking on drop down items */
    $('.drop-down a').click(function() {
      $(this).closest('ul').next('input').val($(this).text());
      $(this).closest('ul').find('a.selected').removeClass('selected');
      $(this).addClass('selected').closest('ul').removeClass('down').siblings('span').text($(this).text());
      return false;
    });
    
  });
})(jQuery)