<!--DocOzone's Javascript code, copyright 1998
// Feel free to borrow and modify this code, 
// but be sure to credit me in the source!  
// Your pal,   -doc-   http://www.ozones.com/

window.onerror = null;
	NS = 0;
	IE = 0;

function loadpost() {
if (document.images) {
    posts = new Array(12);
    for (m=0; m<=11; m++) { 
    posts[m] = new Image(); }
posts[0].src = "images/barry-on.jpg";
posts[1].src = "images/barry-75.jpg";
posts[2].src = "images/barry-50.jpg";
posts[3].src = "images/barry-30.jpg";
posts[4].src = "images/eamescon-on.jpg";
posts[5].src = "images/eamescon-75.jpg";
posts[6].src = "images/eamescon-50.jpg";
posts[7].src = "images/eamescon-30.jpg";
posts[8].src = "images/cmbttrfly-on.jpg";
posts[9].src = "images/cmbttrfly-75.jpg";
posts[10].src = "images/cmbttrfly-50.jpg";
posts[11].src = "images/cmbttrfly-30.jpg";

 }}

function barryoff() {
if (document.images) {
setTimeout('document.barry.src = posts[1].src', 0);
setTimeout('document.barry.src = posts[2].src', 100);
setTimeout('document.barry.src = posts[3].src', 200); }}

function barryon() {
if (document.images) {
setTimeout('document.barry.src = posts[2].src', 0);
setTimeout('document.barry.src = posts[1].src', 100);
setTimeout('document.barry.src = posts[0].src', 200); }}

function eamesconoff() {
if (document.images) {
setTimeout('document.eamescon.src = posts[5].src', 0);
setTimeout('document.eamescon.src = posts[6].src', 100);
setTimeout('document.eamescon.src = posts[7].src', 200); }}

function eamesconon() {
if (document.images) {
setTimeout('document.eamescon.src = posts[6].src', 0);
setTimeout('document.eamescon.src = posts[5].src', 100);
setTimeout('document.eamescon.src = posts[4].src', 200); }}

function cmbttrflyoff() {
if (document.images) {
setTimeout('document.cmbttrfly.src = posts[9].src', 0);
setTimeout('document.cmbttrfly.src = posts[10].src', 100);
setTimeout('document.cmbttrfly.src = posts[11].src', 200); }}

function cmbttrflyon() {
if (document.images) {
setTimeout('document.cmbttrfly.src = posts[10].src', 0);
setTimeout('document.cmbttrfly.src = posts[9].src', 100);
setTimeout('document.cmbttrfly.src = posts[8].src', 200); }}

//   -->