// Copyright 2008, Haig Bedrosian, http://e-magine.org
// basic image loader

function loadIMG(id, img, alt) {
    document.getElementById(id).src=img;
    document.getElementById(id).alt=alt;
    document.getElementById(id).title=alt;
}
