// JavaScript Document
var intervalId = null;
function show_move(id){
	var obj = document.getElementById(id);
	var i = 20;
	if(intervalId != null)
	window.clearInterval(intervalId);
	function change(){
		var h = parseInt(obj.style.marginTop);
		if(!h) h = 0;
		if(h < -90 )
		{
			obj.style.filter="Alpha(opacity=100)";
			obj.style.opacity="10";
			window.clearInterval(intervalId);
		}else
		{
			if(h >= -60)
			{
				h = h - 9;
				obj.style.marginTop = h+'px';
				obj.style.filter="Alpha(opacity="+Math.abs(h)+")";
				obj.style.opacity=Math.abs((h/100));
			}
			else if(h >= -80 && h< -60)
			{
				h = h - 6;
				obj.style.marginTop = h+'px';
				obj.style.filter="Alpha(opacity="+Math.abs(h)+")";
				obj.style.opacity=Math.abs((h/100));
			}
			else if(h< -80)
			{
				h = h - 3;
				obj.style.marginTop = h+'px';
				obj.style.filter="Alpha(opacity="+Math.abs(h)+")";
				obj.style.opacity=Math.abs((h/100));

			}
		}
	}
	intervalId = window.setInterval(change,1);
}