

function setColor(){
		
	 $("#wrapper").animate( { backgroundColor: '#CACACA' }, 5000)
	 .animate( { backgroundColor: '#EEF2CC' }, 5000)
	 .animate( { backgroundColor: '#EADCE5' }, 5000)
	 .animate( { backgroundColor: '#CACACA' }, 5000);
	 
    
}

function setStartColor(color){
	//$("body").animate( { backgroundColor: '#fff' }, 1).animate( { backgroundColor: "#c9c9c9" }, 1);
	$("body").css({backgroundColor: '#c9c9c9'});
}

function setStartColorFast(color){
	$("body").animate( { backgroundColor: '#fff' }, 10).animate( { backgroundColor: "#c9c9c9" }, 10);
}


$(document).ready(function() {
		  
          $("a img").mouseover(function(){
          		$(this).css("opacity", ".5");
          		
          });
          
          $("a img").mouseout(function(){
          		$(this).css("opacity", "1");
          		
          });  
          
          $(".tweet").tweet({
            username: "kmkgstudio",
            join_text: "auto",
         
            count: 1,
            
            loading_text: "loading tweets..."
        });
        
        
        
       
	

        
        
     
          
});



