$(document).ready(function(){

	$("#jLogo_hover").hover(function() { 
    		$(this).stop().animate({"opacity": 1}); 
							 },function() { 
    		$(this).stop().animate({"opacity": 0}); 
	});

	$("#get_the_feed").toggle(function(){
		$("#fold").animate({top: "350px"}, 1000);
		}, function() {
		$("#fold").animate({top: "650px"}, 500);	
	});
	$("#get_the_feed").toggle(function(){
		$("#search").animate({top: "160px"}, 800);
	}, function(){
		$("#search").animate({top: "410px"}, 300);
	});
	
	$("#get_the_feed").toggle(function(){
		$("header").animate({top: "120px", height: "350px"}, 1000);
	}, function(){
		$("header").animate({top: "170px", heigh: "475px"}, 500);
	});
		
});
