function createFlashObject(oLocation,oWidth,oHeight,oId){
	document.write('<object type="application/x-shockwave-flash" data="'+ oLocation +'" height="'+oHeight+'" width="'+oWidth+'" id="'+oId+'">');
	document.write('<param name="movie" value="'+ oLocation +'" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('</object>');
}
function animation(){
	document.getElementById('logo').removeChild(document.getElementById('logo_f'));
	document.getElementById('logo').style.height='160px';
	for(i = 0; i < document.getElementById("par").getElementsByTagName("a").length; i = i + 1){
	setTimeout("document.getElementById('a"+(i+1)+"').style.display='inline'",500+i*200);	
	}
	setTimeout("document.getElementById('menu').style.color='#888888'",1300);
	document.getElementById('content').style.height='auto';
}
function skip(){
	document.getElementById('logo').removeChild(document.getElementById('logo_f'));
	document.getElementById('logo').style.height='160px';
	document.getElementById('content').style.height='auto';
	document.getElementById('menu').style.color='#888888';
	for(i = 0; i < document.getElementById("par").getElementsByTagName("a").length; i = i + 1){
	document.getElementById('a'+(i+1)).style.display='inline';	
	}
}
