묻고답하기

<script>
function script1()
{ var image_1stwidth = document.thisimage.width; }

function script2()
{ script1(); setTimeout('script2()',1000) }

script2();
</script>


<img id=thisimage width=100>

위와 같이, 예를 들면 thisimage라는 ID를 가지는, 원래 넓이는 100이지만 로드 후 계속 넓이가 변하는 이미지의 본래 넓이값 100을 스크립트 내에서 image_1stwidth로 지정하고 싶습니다.
스크립트는 setTimeout에 의해서 1초마다 한번씩 작동하는 상태지만, image_1stwidth의 지정값은 thisimage의 원래 넓이를 한번 저장해 놓고 안바뀌게 하고 싶거든요.
어떻게 하면 되는지 궁금합니다.