/*
	LANDING PAGE Header Calls - OLED REDESIGN
	AUTHOR: Branden Thompson, Branden.Thompson@am.sony.com
	DATE: August 13, 2008
	
	DEV/MAINTENANCE NOTES:
	
	-	This file was created specifically because of an IE6 caching issue with writing
	 	swf objects into DHTML tabs that could/would be access multiple times from the 
	 	same user, causing the text to not appear on reload.
	  
	-	This file MUST be declared on the landing page page AFTER vaio_functions.js, as this
		is the file that contains the displayFlashHeader() function.
	
	FUNCTION LEGEND:
	
	displayFlashHeader( [id of the DIV to contain the swf object], [width], [height], [header - in HTML 1.0], [text alignment], [x offset], [y offset] );
	
	** for more details, see vaio_functions.js to view more robust function documentation. **
		
*/

function initLandingPageHeaders()
{
	displayFlashHeader('screenTiltHeader',200, 25, "<font size='16' color='#66cc00'>SCREEN TILT FEATURE</font>", 'left', -3, 0);
	displayFlashHeader('energyEfficentHeader',180, 25, "<font size='16' color='#66cc00'>ENERGY EFFICIENCY</font>", 'left', -3, 0);
	displayFlashHeader('outstandingContrastHeader',200, 25, "<font size='16' color='#66cc00'>OUTSTANDING CONTRAST</font>", 'left', -3, 0);
	displayFlashHeader('specificationsHeader',180, 25, "<font size='16' color='#66cc00'>RESOLUTION</font>", 'left', -3, 0);
	displayFlashHeader('colorReproductionHeader',190, 25, "<font size='16' color='#66cc00'>COLOR REPRODUCTION</font>", 'left', -3, 0);
	displayFlashHeader('highBrightnessHeader',180, 25, "<font size='16' color='#66cc00'>HIGH BRIGHTNESS</font>", 'left', -3, 0);
	displayFlashHeader('organicMaterialHeader',180, 25, "<font size='16' color='#66cc00'>ORGANIC MATERIAL</font>", 'left', -3, 0);
	displayFlashHeader('responseTimeHeader',200, 25, "<font size='16' color='#66cc00'>FAST RESPONSE TIME</font>", 'left', -3, 0);
}

