﻿function ImageReference( id, url ) {
    this.id = id;
    this.url = url;
}

var img = new Array();

img[0] = new ImageReference("img_home0_1", "home-page/0-1.jpg");
img[1] = new ImageReference("img_home1_1", "home-page/1-1.jpg");
img[2] = new ImageReference("img_home1_2", "home-page/1-2.jpg");
img[3] = new ImageReference("img_home1_3", "home-page/1-3.jpg");
img[4] = new ImageReference("img_homechalkbanner", "home-page/chalk-banner.jpg");
img[5] = new ImageReference("img_home2_1", "home-page/2-1.jpg");
img[6] = new ImageReference("img_home2_2", "home-page/2-2.jpg");
img[7] = new ImageReference("img_home2_3", "home-page/2-3.jpg");
img[8] = new ImageReference("img_home3_1", "home-page/3-1.jpg");
img[9] = new ImageReference("img_home4_1", "home-page/4-1.jpg");
img[10] = new ImageReference("img_home4_2", "home-page/4-2.jpg");
img[11] = new ImageReference("img_home4_3", "home-page/4-3.jpg");
img[12] = new ImageReference("img_home5_1", "home-page/5-1.jpg");
img[13] = new ImageReference("img_home5_2", "home-page/5-2.jpg");
img[14] = new ImageReference("img_home5_3", "home-page/5-3.jpg");
img[15] = new ImageReference("img_home6_1", "home-page/6-1.jpg");
img[16] = new ImageReference("img_home6_2", "home-page/6-2.jpg");
img[17] = new ImageReference("img_home6_3", "home-page/6-3.jpg");
img[18] = new ImageReference("img_home7_1", "home-page/7-1.jpg");
img[19] = new ImageReference("img_home7_2", "home-page/7-2.jpg");
img[20] = new ImageReference("img_home7_3", "home-page/7-3.jpg");
img[21] = new ImageReference("img_homekeyring", "home-page/keyring.jpg");

//  RHS
img[22] = new ImageReference("img_rhs1", "home-page/free-shipping.jpg");
img[23] = new ImageReference("img_rhs2", "home-page/quote.jpg");
img[24] = new ImageReference("img_rhs3", "home-page/5-good-reasons.gif");
img[25] = new ImageReference("img_rhs4", "home-page/b-product.jpg");
img[26] = new ImageReference("img_rhs5", "home-page/b-size.jpg");
img[27] = new ImageReference("img_rhs6", "home-page/b-price.jpg");
img[28] = new ImageReference("img_rhs7", "home-page/verbal-orders.jpg");
img[29] = new ImageReference("img_rhs8", "home-page/testimonials.jpg");
img[30] = new ImageReference("img_rhs9", "home-page/vouchers.jpg");
img[31] = new ImageReference("img_rhs10", "home-page/track.jpg");
img[32] = new ImageReference("img_rhs11", "home-page/newsletter.jpg");
img[33] = new ImageReference("img_rhs12", "home-page/request-sample.jpg");

for ( var x = 0; x <= 33; x++ ) {
    var objImg = document.getElementById(img[x].id);
    objImg.src = "media/images/" + img[x].url;
}