// 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/nahunter.htm'><img src='http://www.identicards.com/Assets/images/NAAC/HCfreecontent450x167.jpg' alt='Free Issue of the North American Hunter magazine'></a>";

images[1] = "<a href = 'http://www.identicards.com/memberships/nahunter.htm'><img src='http://www.identicards.com/Assets/images/NAAC/HCTest450x167.gif' alt='Free Trial Membership in the North American Hunting Club'></a>";

images[2] = "<a href = 'http://www.identicards.com/memberships/nafisherman.htm'><img src='http://www.identicards.com/Assets/images/NAAC/FBA05001_AcqMagA.JPG' alt='Free Trial Membership in the North American Fishing Club'></a>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

