function playFlash(){
	//alert('test');
	clearTimeout(initTimeout);
	
	var theMovie = getFlashMovieObject('headerFlash');

	if (theMovie.Play()){
		theMovie.Play();
	}else{	
		//alert('cant't access flash');
	}
}

function initialize(){
	//playFlash();
	//initTimeout = setTimeout("playFlash()",(500));
	
	if(is_ie && is_major < 7){
		fixPngs();
	}			
	
	//alert('test');	
}


function getFlashMovieObject(movieName)
{
	//http://www.permadi.com/tutorial/flashjscommand/
  if (window.document[movieName]) 
  {
      return window.document[movieName];
  }
  if (navigator.appName.indexOf("Microsoft Internet")==-1)
  {
    if (document.embeds && document.embeds[movieName])
      return document.embeds[movieName]; 
  }
  else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
  {
    return document.getElementById(movieName);
  }
}