// JavaScript Document


//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(3);

images[0] = "<a href = 'http://www.identicards.com/memberships/nafisherman.htm '><img src='http://www.identicards.com/Assets/images/NAAC/FCfreeissue300x250.gif' alt='Free Issue of the North American Fisherman magazine'></a>";

images[1] = "<a href = 'http://www.identicards.com/memberships/nafisherman.htm '><img src='http://www.identicards.com/Assets/images/NAAC/FC_300_club.jpg' alt='Free Trial Membership in the North American Fishing Club'></a>";

images[2] = "<a href = 'http://www.identicards.com/memberships/nafisherman.htm '><img src='http://www.identicards.com/Assets/images/NAAC/FC_300_mag.jpg' alt='Free Issue of the North American Fisherman magazine'></a>";



index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

