$( document ).ready( function() { 
	$( "#newsholder" ).css( "height", $( "#newsholder" ).css( "height" ) );
	$('#logomask').delay(4000).fadeOut(1000);
	
	$('#news')
	.css( { opacity: 0 } )
	.delay(4500)
	.animate( { marginTop: 0, opacity: 1 }, 500 );
	
	// $('#news').animate( { 'margin-top': '0px' } );
	
} );
