<!--//
    
function init_degrade(){
	show1_degrade=setInterval("show_degrade()",0);
}
function show_degrade(){
	clearInterval(show1_degrade);
	HiPos_degrade=530;
	show2_degrade=setInterval("Appear_degrade()",40);
}
function Appear_degrade(){
	tmp_degrade = parseInt(document.getElementById("illustration_bg_txt").style.width, 10);
	if (tmp_degrade < HiPos_degrade)
	{
		 tmp_degrade += 20;
		 document.getElementById("illustration_bg_txt").style.width = tmp_degrade + "px"; 
	}
	else {
		clearInterval(show2_degrade);
	}
}
function hide_degrade(){ 
	document.getElementById("illustration_bg_txt").style.visibility = 'hidden'
}

function init_slogan(){
	show1_slogan=setInterval("show_slogan()",10);
}
function show_slogan(){
	clearInterval(show1_slogan);
	HiPos_slogan=550;
	show2_slogan=setInterval("Appear_slogan()",40);
}
function Appear_slogan(){	
	tmp_slogan = parseInt(document.getElementById("illustration_txt").style.left, 10);
	if (tmp_slogan > HiPos_slogan)
	{
		 tmp_slogan -= 20;
		 document.getElementById("illustration_txt").style.left = tmp_slogan + "px"; 
	}
	else {
		clearInterval(show2_slogan);
	}
}
function hide_slogan(){ 
	document.getElementById("illustration_txt").style.visibility = 'hidden'
}

//-->

