﻿<!-- Begin JS Script -->

var theImages = new Array();

theImages[0] = '/app_themes/fender/images/special/acousticsBG04.jpg';
theImages[1] = '/app_themes/fender/images/special/bassesBG00.jpg';
theImages[2] = '/app_themes/fender/images/special/guitaramplifiersBG00.jpg';
theImages[3] = '/app_themes/fender/images/special/guitaramplifiersBG01.jpg';
theImages[4] = '/app_themes/fender/images/special/guitaramplifiersBG05.jpg';
theImages[5] = '/app_themes/fender/images/special/guitarsBG01.jpg';
theImages[6] = '/app_themes/fender/images/special/guitarsBG04.jpg';
theImages[7] = '/app_themes/fender/images/special/miscBG00.jpg';
theImages[8] = '/app_themes/fender/images/special/miscBG03.jpg';
theImages[9] = '/app_themes/fender/images/special/miscBG08.jpg';
theImages[10] = '/app_themes/fender/images/special/miscBG09.jpg';
theImages[11] = '/app_themes/fender/images/special/miscBG11.jpg';
theImages[12] = '/app_themes/fender/images/special/miscBG12.jpg';

var j = 0;
var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
    var target = document.getElementById('WM-Body');
    target.style.backgroundImage = "url(" + theImages[whichImage] + ")";
    target.style.backgroundRepeat = "no-repeat";
    target.style.backgroundPosition = "center top";
    target.style.backgroundAttachment = "fixed";
}
window.onload = showImage;



