jQuery(document).ready(function(){
	
	jQuery(".grow").hide();
	jQuery(".grow").slideDown("slow");
	
	jQuery(".fade-in").hide();
	jQuery(".fade-in-slow").fadeIn(2000);
	jQuery(".fade-in-med").fadeIn(1500);
	jQuery(".fade-in-fast").fadeIn(1000);
	
	
	jQuery(".more").hide();
	jQuery(".showmore").click(function(){
			$(".more").slideToggle("slow");
			$(".showmore .choices").toggle();
	});
	
	(function showProjects(elem){
	  elem.animate({opacity:1}, 200,function(){
	    jQuery(this).next().length && showProjects(jQuery(this).next()); 
	  });
	})(jQuery('.projects:first').delay(400));
	
	(function showProjects(elem){
	  elem.animate({opacity:1}, 200,function(){
	    jQuery(this).next().length && showProjects(jQuery(this).next()); 
	  });
	})(jQuery('.really_simple_twitter_widget li:first').delay(400)); 

});
 
