// Check if this script is being ran inside a frame
if( top.location != self.location )
{
	// If so, hide the original masthead and infobar
	document.getElementById( 'inner_masthead' ).style.display = 'none';
	document.getElementById( 'info_bar' ).style.display = 'none';
	
	// And show the alternate masthead and infobar
	document.getElementById( 'alternate_inner_masthead' ).style.display = 'block';
	document.getElementById( 'alternate_infobar' ).style.display = 'block';
}
