var userWidth = window.screen.width;
function moveRight() {
var pp = document.getElementById("indexbar");
var lft = parseInt(pp.style.left);
var tim = setTimeout("moveRight()",69);  // <---- To change speed of any of the moving images, lower the number here to make the image faster and increase the number to make it slower. StarBurst
lft = lft-1; 
pp.style.left = lft+"px";
if (lft <-231) { 
pp.style.left = userWidth+"px";  
}
}

var userWidth2 = window.screen.width;
function moveRight2() {
var pp2 = document.getElementById("memberbar");
var lft2 = parseInt(pp2.style.left);
var tim2 = setTimeout("moveRight2()",69); 
lft2 = lft2-1;  // move by 5 pixels
pp2.style.left = lft2+"px";
if (lft2 <-349) {
pp2.style.left = userWidth2+"px"; 
}
}

var userWidth3 = window.screen.width;
function moveRight3() {
var pp3 = document.getElementById("storebar");
var lft3 = parseInt(pp3.style.left);
var tim3 = setTimeout("moveRight3()",45);
lft3 = lft3-1; 
pp3.style.left = lft3+"px";
if (lft3 <-398) { 
pp3.style.left = userWidth3+"px"; 
}
}

var userWidth4 = window.screen.width;
function moveRight4() {
var pp4 = document.getElementById("arcadebar");
var lft4 = parseInt(pp4.style.left);
var tim4 = setTimeout("moveRight4()",62);
lft4 = lft4-1; 
pp4.style.left = lft4+"px";
if (lft4 <-398) { 
pp4.style.left = userWidth4+"px";
}
}


var userWidth5 = window.screen.width;
function moveRight5() {
var pp5 = document.getElementById("decorbar1");
var lft5 = parseInt(pp5.style.left);
var tim5 = setTimeout("moveRight5()",80);
lft5 = lft5-1; 
pp5.style.left = lft5+"px";
if (lft5 <-231) { 
pp5.style.left = userWidth5+"px";  
}
}

var userWidth6 = window.screen.width;
function moveRight6() {
var pp6 = document.getElementById("decorbar2");
var lft6 = parseInt(pp6.style.left);
var tim6 = setTimeout("moveRight6()",90); 
lft6 = lft6-1; 
pp6.style.left = lft6+"px";
if (lft6 <-349) {
pp6.style.left = userWidth6+"px"; 
}
}

var userWidth7 = window.screen.width;
function moveRight7() {
var pp7 = document.getElementById("decorbar3");
var lft7 = parseInt(pp7.style.left);
var tim7 = setTimeout("moveRight7()",70);
lft7 = lft7-1; 
pp7.style.left = lft7+"px";
if (lft7 <-398) { 
pp7.style.left = userWidth7+"px"; 
}
}

var userWidth8 = window.screen.width;
function moveRight8() {
var pp8 = document.getElementById("decorbar4");
var lft8 = parseInt(pp8.style.left);
var tim8 = setTimeout("moveRight8()",99);
lft8 = lft8-1; 
pp8.style.left = lft8+"px";
if (lft8 <-398) { 
pp8.style.left = userWidth8+"px";
}
}
