// JavaScript Document
/* Start for This is for scoller bar */
  var scroll;
  var m=0;
  var n=2865;    /* this value must be the same as that for #div1 and #div2 */
  var speed=14; /* this value controls scroll speed, larger values are slower */

function scrollPics() {
     document.getElementById('div1').style.left=m+'px';
     document.getElementById('div2').style.left=n+'px';
   m--;
   n--;
if(m==-2865) {
   m=2865;
 }
if(n==-2865) {
   n=2865;
 }
scroll=setTimeout('scrollPics()',speed);
 } 
window.onload=function() {
   scrollPics();
document.getElementById('container').onmouseover=function() {
   clearTimeout(scroll); 
  }
document.getElementById('container').onmouseout=function() {
   scrollPics();
  }
 }
 /* end for This is for scoller bar */

