﻿// Home page Splash Image rotator script
//

var theImages = new Array();

theImages[0] = 'images/hmSplash.jpg';
theImages[1] = 'images/hmSplash2.jpg';
theImages[2] = 'images/hmSplash3.jpg';
theImages[3] = 'images/hmSplash.jpg';
theImages[4] = 'images/hmSplash.jpg';

var theLinks = new Array();

theLinks[0] = 'SFNT.html';
theLinks[1] = 'category/French_Fry_Holders_Fry_Baskets.html';
theLinks[2] = 'product/Table_Bar_Caddies_Stainless_Steel/45_oz_SS_Serving_Pail.html';
theLinks[3] = 'SFNT.html';
theLinks[4] = 'SFNT.html';

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++) 
{
    preBuffer[i] = new Image()
    preBuffer[i].src = theImages[i]
}
//Random-loading images
var whichImage = Math.round(Math.random() * (p - 1));

function showImage() 
{
    if (whichImage == 0) 
    {
        document.write('<a href ="' + theLinks[whichImage] + '"><img src="' + theImages[whichImage] + '" border=0 width=604 height=335></a>');
        //document.write('<iframe width="604" height="335" src="http://www.youtube.com/embed/YZb0JSghxBQ?rel=0" frameborder="0" allowfullscreen></iframe>');

    }
    else if (whichImage == 1) 
    {
        document.write('<a href ="' + theLinks[whichImage] + '"><img src="' + theImages[whichImage] + '" border=0 width=604 height=335></a>');
        //document.write('<iframe width="604" height="335" src="http://www.youtube.com/embed/YZb0JSghxBQ?rel=0" frameborder="0" allowfullscreen></iframe>');

    }
    else if (whichImage == 2) 
    {
        document.write('<a href ="' + theLinks[whichImage] + '"><img src="' + theImages[whichImage] + '" border=0 width=604 height=335></a>');
        //document.write('<iframe width="604" height="335" src="http://www.youtube.com/embed/YZb0JSghxBQ?rel=0" frameborder="0" allowfullscreen></iframe>');

    }
    else if (whichImage == 3) 
    {
        document.write('<a href ="' + theLinks[whichImage] + '"><img src="' + theImages[whichImage] + '" border=0 width=604 height=335></a>');
        //document.write('<iframe width="604" height="335" src="http://www.youtube.com/embed/YZb0JSghxBQ?rel=0" frameborder="0" allowfullscreen></iframe>');
    }
    else if (whichImage == 4) 
    {
        document.write('<a href ="' + theLinks[whichImage] + '"><img src="' + theImages[whichImage] + '" border=0 width=604 height=335></a>');
        //document.write('<iframe width="604" height="335" src="http://www.youtube.com/embed/YZb0JSghxBQ?rel=0" frameborder="0" allowfullscreen></iframe>');
    }

}


// Place at HMTL page image location
//<script type="text/javascript">
// showImage();
//</script>


