function moveIt(id,x) 
{	var supported = (document.getElementById);
	if (!supported) return;
	var divPath = document.getElementById(id);
	var currPos = parseInt(divPath.style.left);
		if (currPos < x)
		{	currPos += 3; 
      		divPath.style.left = currPos + "px"; 
    		setTimeout("moveIt('" + id + "'," + x+ ")",60); 
		}
}
window.onload = function(){moveIt('birdy',95)};