$(document).ready(function() {
    	 
	//Home Button
	$("h1#logo a,#home-button").mouseover(function() {
 	
 		$('#home-button').stop().animate({
		    top: "10px"
		  }, 200 );
		
	}).mouseout(function(){

	$('#home-button').stop().animate({
			    top: "30px"
			  }, 200 );
	
	});
	


	$(".portfolio-item-desc").hide();
	$(".portfolio-item").hover(
	  function () {
	  	
	  	var current = $(this).find("div:first");
	    $(current).stop().fadeTo('slow',1);

				    
	  }, 
	  function () {
	   	
	 	var current = $(this).find("div:first");
	  	
	   	$(current).stop().fadeTo('fast',0, function() {
     			$(current).hide();
     			
     		}
		);
	   
	  }
	);
	
	$(".person-desc").hide();
	$(".person").hover(
	  function () {
	  	
	  	var current = $(this).find("div:first");
	    $(current).stop().fadeTo('slow',1);

				    
	  }, 
	  function () {
	   	
	 	var current = $(this).find("div:first");
	  	
	   	$(current).stop().fadeTo('fast',0, function() {
     			$(current).hide();
     			
     		}
		);
	   
	  }
	);
	
	$("#home-portfolio-text").hide();
	$("#home-portfolio").hover(
	  function () {
	  	
	  	 $("#home-portfolio-text").stop().fadeTo('slow',1);
				    
	  }, 
	  function () {
	   	
	 	$("#home-portfolio-text").stop().fadeTo('slow',0);
	   
	  }
	);

	
		
	//Feed Stuff
	//$(".feed-flickr p:last").css("display","none");

 		
}); 




