$(document).ready(function() {

       $("#hide").click(function(){
         $(".target").hide( "explode", 
                     {pieces: 50 }, 2000 );
});

       $("#hide2").click(function(){
         $(".target2").hide( "explode", 
                     {pieces: 50 }, 2000 );
});

       $("#hide3").click(function(){
         $(".target3").hide( "explode", 
                     {pieces: 50 }, 2000 );
});

   });
