function startTimer()
{
	setTimeout ( "showFlash()", 3000 );
}

function showFlash()
{
var flashDiv = document.getElementById('flash_head');
	flashDiv.className = 'header-flashfader-show';
}