$(function(){
	var $infoSpeed = 200;
	
	$('#logo_link, .action21').live('click', function(e) {
		var $this			= $(this);
	
		$("#projects").slideUp('normal', function(){
			$.ajax({
				type: 'POST',
				url: "/includes/projects_home.php",
				success: function(html){ 
					$("#projects").html(html);
					$("#projects").slideDown({
						height: 551
					});
					Cufon.refresh();
				}
			});
		});
		
		$("#text").show();

		$("#slide-nav-inner").animate({
			opacity:0
		}, $infoSpeed);

		$("#content").animate({
			opacity:0,
			height: 0
		}, $infoSpeed).removeClass('work-active');
	
		//$('.close-button').animate({opacity: 0}, $infoSpeed);
		$('.close-button').removeClass('info-active');

		e.preventDefault();
		
	});
	
	
});




