<!--
var swapPics = new Array();

function swap(name,state) {
    if(swapPics[name+state] && swapPics[name+state].complete) {
        document.images[name].src = swapPics[name+state].src;
    }
}

function preloadPics(thePics) {
	for (i=0;i<thePics.length;i++){
		swapPics[thePics[i]] = new Image();
		swapPics[thePics[i]].src = 'images/'+thePics[i]+'.gif';
		swapPics[thePics[i]+'_over'] = new Image();
		swapPics[thePics[i]+'_over'].src = 'images/'+thePics[i]+'_over.gif';
	}
}


//-->

