Может просто скорость увеличить?
<script>
function drag_1() {
w = 0;
setInterval(function () {
if (w < 400) {
document.getElementById('img').style.marginLeft = w+'px';
w+=2;
}
}, 10);
}
</script>
<body onLoad="drag_1();">
<img id='img' src="http://javascript.ru/forum/images/ca_serenity/misc/logo.gif" width="400" height="250" >