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