/*要素を消去*/
$(function(){

    $(".pane .delete").click(function(){
        $(this).parents(".pane").animate({ opacity: 'hide' }, "slow");
    });

});
/*要素を表示*/
$(function(){

 $("#btnRun").click(function() {      
   $("div:hidden:first").fadeIn(2000,function(){ this.style.removeAttribute("filter"); });   
 });

});
/*背景色変更*/
$(function() {

   $(".intext").focus(function() {
     $(this).css("background-color","#fff2f6");
   });

   $(".intext").blur(function() {
     $(this).css("background-color", "white");
   });

 });
