/**
 * Prevent background flickering in IE
 */
function noFlicker()
{
	try { document.execCommand( 'BackgroundImageCache', false, true ); } catch( e ) { }
}

/**
 * Load formatting functions
 */
window.onload = function()
{
	noFlicker();
}