$(function() {
  
  if (!(typeof DD_belatedPNG === 'undefined'))
  {
  	DD_belatedPNG.fix('html .ie6png, .highlight1, .highlight2, .employee');
  }
  
  // ADMIN
  
  $('.delete_item').click(function(e){
    var test = confirm('Are you sure?')
    if(test) {
      e.preventDefault();
      var form = $(this).parents('form:first');
      form.submit();
    }
    return false;
  });

  $('.to_confirm').bind('click', function(e){
    var msg = $(this).attr('rel');
    if(confirm('Are you sure? ' + msg)) {
      return true;
    } else {
      return false;
    }
  });

});

