/*--------------------------------------------------------------------------*
 *  
 *  IEClear
 *  
 *--------------------------------------------------------------------------*/

new function(){
	
	function IEClear(){
		document.body.style.fontSize = 'xx-large';
		document.body.style.fontSize = '';
	}
	
	if ( /*@cc_on!@*/false ) {
		window.attachEvent( 'onload', IEClear );
	}
}

