var SValue=0;
var Working=false;
var timerShowMain;
System.StyleOut=function(){
	bodyer_content.style.filter="alpha(opacity=0)";
	if(Working!=true){
	timerShowMain=window.setInterval("ShowOut()",1);
	Working=true;
	}
	bodyer_content.innerHTML=Blog.HTML;
}
function ShowOut(){
	if(SValue<100){
		bodyer_content.style.filter="alpha(opacity:"+SValue+")";
		SValue+=10;
	}else{
		SValue=0;
		Working=false;
		window.clearInterval(timerShowMain);
	}
}
