
$(document).ready(function(){

	//hide others
	//$('.curtain').addClass('curtainStyle');

	//add intro
	$('.trailer').addClass('flashStyle').flash({
		src: 'mam-trailer.swf',
		width: 700,
		height: 394,
		background: '#000000'
	});
	
	//safety function
	//clicking curtainor trailer means end of trailer
	$('.curtain,.trailer').click(function(event){
		trailerComplete();
	});

});

function moodandmotion( thing )
{
	var toDo = false;
	var much;

	if( thing == 'Network' )
	{
		much = '0';
		$('.naviNetwork').addClass('active');
		$('.naviContact').removeClass('active');
		toDo = true;
	}
	else if( thing == 'Contact' )
	{
		much = '370';
		$('.naviNetwork').removeClass('active');
		$('.naviContact').addClass('active');
		toDo = true;
	}
	
	if( toDo )
	{
		$('.maskedarea').animate({ marginTop: '-'+much+'px' }, 'n');
	}
}


function trailerComplete()
{
	//finish trailer
	$('.trailer').empty().animate({ top: '0%', marginTop: '0px', height: '225px' }, 'slow', 'linear', showOthers ).hide( 500 );
}

function showOthers()
{
	//show others
	$('.curtain').hide('slow').removeClass('curtainStyle');
}