text = new Array();
text['table'] = "Wrought iron tables";
text['chairs'] = "Wrought iron chairs";
text['patio'] = "Patio furniture";
text['rack'] = "Wrought iron pot racks";


function wo(x, y) { 
if (document.all) {
    document.images[y].src = "set/" + x + ".jpg";
    window.status = text[x]; 
} 
}

function wi(x, y) { 
if (document.all) {    
    document.images[y].src = "set/" + "product_" + x + ".png"; 
    window.status = "";
}
}
