//---- Bosson Designs
//---- index page scripts ---------------------------
// ------ preload images --------------------------------------------
arImageSrc = new Array (
        "links/home-200x45.gif",
        "links/bio-120x45.gif",
        "links/licensing-300x45.gif",
        "links/store-200x45.gif",
        "links/portfolio-320x45.gif",
        "links/contact-260x45.gif",
        "el/bird-start250x300.gif",      
        "el/bird-ani250x300.gif"
        );
arImageList = new Array ();

for (counter in arImageSrc) {
    arImageList[counter] = new Image();
    arImageList[counter].src = arImageSrc[counter];
    // if all images are the same type,
    // arImageList[counter].src = arImageSrc[counter] + ".gif";
    // if all images are in the same directory and same type,
    // arImageList[counter].src = pathstring + arImageSrc[counter] + ".gif";
}

function showPlay() {
	document.getElementById('playbutton').style.visibility="visible";
}
function playAni() {
	document.getElementById('birdanidiv').src="el/bird-ani250x300.gif";
	document.getElementById('playbutton').style.visibility="hidden";
	setTimeout('showPlay()',14000);
}


