window.onload = replaceImage;




function replaceImage()
{
Resize();
displayHeader();
// Edit this array for item images
// Use the d prefix for all images
// Images will be resized according to width and height
// in the resize function of this page


img0.src= 'elements/dC3215-lg.jpg';
img1.src='elements/d3128-lg.jpg';
img2.src='elements/d3082-lg.jpg';
img3.src='elements/d3086.jpg';
img4.src='elements/d3075-LG.jpg';
img5.src='elements/d3103-LG.jpg';


}




function dispProdInfo(thisName,thisPrice)
{
// Edit the following Array for PRoduct Descriptions on the Main Page.
// The Array is arranged in top left first, top right // second, middle left third and so on...

var defProdDesc = new Array("Pabst Grey Hoodie","PBR Royal T-Shirt","Pabst Flexfit Flat Bill","Pabst Runner Cap","Pabst Dog Collar","Pabst Bowling Ball");

/* Edit this Array for product pricing. Follow the same pattern as the product description*/

var defProdPrice = new Array("$36.00","$12.00","$19.99","$15.00","$10.50","$120.00");




var prodDesc = "desc" + thisName;
var prodPrice = "price" + thisPrice;
var desc = defProdDesc[thisName];
var price = defProdPrice[thisPrice];
document.getElementById(prodDesc).innerHTML = desc;
document.getElementById(prodPrice).innerHTML = price;
}




function displayHeader()
{
for (var prodName=0;prodName<6;prodName++)
for (var prodPrice=0; prodPrice<6;prodPrice++)
dispProdInfo(prodName,prodPrice);
}


function Resize()
{
var imgHeight = 150;
var imgWidth = 150;
img0.style.height = imgHeight;
img0.style.width = imgWidth;
img1.style.height = imgHeight;
img1.style.width = imgWidth;
img2.style.height = imgHeight;
img2.style.width = imgWidth;
img3.style.height = imgHeight;
img3.style.width = imgWidth;
img4.style.height = imgHeight;
img4.style.width = imgWidth;
img5.style.height = imgHeight;
img5.style.width = imgWidth;
}

