function showcomments()
{
	var clayer=document.getElementById('Comment_Layer');
	var blayer=document.getElementById('Comment_Img');
	ch=clayer.style.width;
	ch = parseInt(ch);
	if (ch <= 180){
		t=setTimeout("showcomments()",25);
		clayer.style.width=parseInt(ch+10)+'px';
		blayer.style.left=parseInt(ch+10)+'px';
	} else {
		clearTimeout(t);
	}
}
function hidecomments(){
	var clayer=document.getElementById('Comment_Layer');
	var blayer = document.getElementById('Comment_Img');
	var loadimage = document.getElementById('loading');
	loadimage.style.visibility = 'hidden';
	ch=clayer.style.width;
	ch = parseInt(ch);
	if (ch > 0){
		s=setTimeout("hidecomments()",25);
		clayer.style.width=parseInt(ch-10)+'px';
		blayer.style.left=parseInt(ch-10)+'px';
	} else {
		clearTimeout(s);
	}
}
function commentaction(){
	var clayer=document.getElementById('Comment_Layer');
	if (parseInt(clayer.style.width) == 0){
		showcomments();
	} else {
		hidecomments()
	}	
}
