$(document).ready(function() {
  if ($('.click-here-content .field-wrapper .error').length > 0) {
    $('.click-here-label').hide();
    $('.click-here-content').show();
  }

  $('.click-here-label').click(function() {
    $(this).hide();
    $('.click-here-content').slideDown('normal');
  });

  $('.item-delete').click(function() {
    return confirm('Are you sure you want to delete this item?');
  });

  $('.image-delete').click(function() {
    if(confirm('Are you sure you want to delete this image?')) {
      $(this).parent().parent().find('.image-data').val('');
      $(this).parent().parent().parent().find('.submit').trigger('click');
    }
  });

  $('#nal_top_nav_wrapper ul li:last').addClass('last');
});
