window.onload = function() {
    var arr_imgs = new Array("offer3.png","offer4.png","offer5.png");
    var arr_links = new Array("/furniture/search/product/Quadra/wardrobe-1526-63438/","/furniture/search/product/Spiro/2-1367-62913/","/furniture/living-room/TV-and-Hi-fi-Units/Adena/2-1586-64084/");
    var rand_num = Math.floor(Math.random()*3);

    document.getElementById("home_image").src = "images/" + arr_imgs[rand_num];
	document.getElementById("special_link").href = arr_links[rand_num];
}

