// array of images
var imgs = new Array();
imgs[0] = "./images/Sammson.com_2005_on_03.gif";
imgs[1] = "./images/Sammson.com_2005_on_04.gif";
imgs[2] = "./images/Sammson.com_2005_on_05.gif";
imgs[3] = "./images/Sammson.com_2005_on_07.jpg";

// preload the images
function preload()
{
        var tmp = null;
        for (var j = 0; j < imgs.length; j++)
        {
                tmp = imgs[j];
                imgs[j] = new Image();
                imgs[j].src = tmp;
        }
}

function external(external_url)
{
	window.open(external_url);
	return false;
}


void(preload());
