// JavaScript Document
  var p=0;
  var speed=50;   // vary this to suit, larger value - slower speed

window.onload=function() {
   clouds();
 }
function clouds() {

   document.getElementById('container').style.backgroundPosition=p+'px 0';

   p++;    //change this to p-- for right to left direction

setTimeout('clouds()',speed);
 }
