$(document).ready(function() {
  $(".dp.admin .box li").bind("mouseover mouseout", function(){$(this).toggleClass("hover")});
  $(".dp.admin .box li .delete").bind("mouseover mouseout", function(){
    $(this).parent().toggleClass("warning");
  });
  $(".dp.admin .box li .delete").bind("click", function(){
    if(confirm("Are you sure you want to delete \""+$(this).siblings("a").html()+"\"?")){
      $.post("/admin", {"do": "deletepage", "id": $(this).parent().attr("rel")});  
    } 
  });

  setTimeout(vanishThings, 3000);
});

function vanishThings (argument) {
  $('.vanish').fadeOut('slow', function() {$(this).remove();});
}
