$(document).ready(function(){
	
	$("#portfolio div:not(.homepage)").hide();
	
	$("a[rel*=facebox]").facebox();
	
	$.clicked = "none";
	$.current = "homepage";
	
	$('#portfolio_menu a').click(function(){
		$('#portfolio_menu a.active').removeClass('active');
		$.clicked = $(this).attr('id');
		$(this).attr('class','active');
		$("."+$.current).fadeOut(500,test)
		return false;
	})
	
	function test() {
		$.current = $.clicked
		$("#portfolio div."+$.clicked).fadeIn(500);
	}
	
	/*$("#portfolio_menu a:not(.active)").hover(function(){
		$(this).animate({
			color: "#896575"
			
		},{queue:false,duration:200})
	}, function() {
		$(this).stop().animate({
			color: "#3c0a20"
		},{queue:false, duration:350})
	});*/
	
});