    $(document).ready(function(){ 
							   
/* Buttons */							   
   
      $("img.butt, a.butt").each(function(){ 
            $(this).fadeTo(150, 0);
       }); 
   
   
       $("img.butt, a.butt").hover(function(){ 
            $(this).fadeTo(200, 1); 
            },function(){ 
            $(this).fadeTo(200, 0);
       }); 	    
							   
/* Developer */							   
   
      $("img.dev, a.dev").each(function(){ 
            $(this).fadeTo(200, 0.5); 
      }); 
   
   
       $("img.dev, a.dev").hover(function(){ 
            $(this).fadeTo(350, 1); 
            },function(){ 
            $(this).fadeTo(350, 0.5); 
       }); 
	   
/* Links */

      $("fadelink, a.fadelink").each(function(){ 
            $(this).fadeTo(200, 1); 
      }); 
   
   
       $("fadelink, a.fadelink").hover(function(){ 
            $(this).fadeTo(350, 0.5); 
            },function(){ 
            $(this).fadeTo(350, 1); 
       });	   
	  
 
    });  
	

$(document).ready(function(){
    
    $("bt01").click(function () {
      $("butt").animate({left:'+=200px'}, 2000);
      $("butt").animate({top:'0px'}, 600);
      $("butt").queue(function () {
        $(this).toggleClass("butt");
        $(this).dequeue();
      });
      $("div").animate({left:'10px', top:'30px'}, 700);
    });

  });
