Teamvalue = 'up';

function openPerson(id)
{
	$('.teamContent').css( { height:"0px" } );
	$('.teamSubmenu').css( { color:"#666666" } );
	$('.teamContent#team-personal').css( { height:"530px" } );
	
	$('.teamBox').css( { width:"0px", height:"0px" } );
	$('.teamBox#team-'+id).css( { width:"599px", height:"530px" } );
	
	personId = id;
}

function openPage(page)
{
	$('.teamContent').animate( { height:"0px" }, 500 );
	$('.teamContent#team-'+page).animate( { height:"530px" }, 500 );
}

function closePage()
{
	$('#personalBlock').animate( { paddingLeft:"600px" }, 500 );
	$('#personalBlock').animate( { height:"0px", paddingLeft:"0px" }, 10 );
	Teamvalue = 'up';
}

$(".teamSubmenu").click(function()
{
	$('.teamSubmenu').css( { color:"#666666" } );
	$(this).css( { color:"#000000" } );
});

$(".box").click(function()
{
	if(Teamvalue != 'down')
	{
		$('#personalBlock').animate( { height:"530px" }, 500 );
		Teamvalue = 'down';
	}
});
