$(document).ready( function(){
	
	$('#content').css( "display", "block" );
	
	$('#main-menu').css({opacity: 0});
	
	setTimeout(function() {
		$('#main-menu').animate({marginRight: '+=40', height: 'toggle', opacity: 1}, 1000);
	}, 1000 );
	
	resizeImage();
});

$(window).bind('resize', function() {
	resizeImage();
});

function resizeImage()
{
	var l_iWidth = $(window).width();
	var l_iHeight = $(window).height();

	if( ( l_iWidth / 16 ) > ( l_iHeight / 9 ) )
	{
		newHeight = ( l_iWidth / 16 ) * 9;
		marginTop = ( newHeight - l_iHeight ) / 2;

		$('#home-faux-bg').css( 'width', l_iWidth );
		$('#home-faux-bg').css( 'height', newHeight );
		$('#home-faux-bg').css( 'top', '-'+marginTop+'px' );
		$('#home-faux-bg').css( 'left', '0px' );
	}
	else
	{
		newWidth = ( l_iHeight / 9 ) * 16;
		marginLeft = ( newWidth - l_iWidth ) / 2;

		$('#home-faux-bg').css( 'width', newWidth );
		$('#home-faux-bg').css( 'height', l_iHeight );
		$('#home-faux-bg').css( 'left', '-'+marginLeft+'px' );
		$('#home-faux-bg').css( 'top', '0px' );
	}
}
