//Javascript Created by Computerhope http://www.computerhope.com
//store the quotations in arrays

// Adjust the following variable to equal the number of arrays 
images = new Array(4);

// 1. NETFLIX - 1
images[0] = "<a href='http://click.linksynergy.com/fs-bin/click?id=XT/hs7fLYNY&offerid=78684.10000073&type=4&subid=0' target='_blank'><img src='http://cdn.netflix.com/us/affiliates/banners/0804/234060A.gif' alt='DVD Rentals Delivered. Netflix, Inc..' border='0'></a><img border='0' width='1' height='1' src='http://ad.linksynergy.com/fs-bin/show?id=XT/hs7fLYNY&bids=78684.10000073&type=4&subid=0'>";

// 3. NATIONAL BIKE REGISTRY
images[1] = "<a href = 'http://click.linksynergy.com/fs-bin/click?id=XT/hs7fLYNY&offerid=21387.10000003&type=4&subid=0' target='_blank'><img src='http://nationalbikeregistry.com/banners/nbr234x60.gif' alt='Hardcore bikers, click here. National Bike Registry.' border='0'></a><img border='0' width='1' height='1' src='http://ad.linksynergy.com/fs-bin/show?id=XT/hs7fLYNY&bids=21387.10000003&type=4&subid=0'>";

// 3. ITUNES - STAND UP TO CANCER 468x60
images[2] = "<a href='http://click.linksynergy.com/fs-bin/click?id=GP/bYhdDzYI&offerid=146261.10003519&type=4&subid=0' target='_blank'><IMG alt='Apple iTunes' border='0' src='http://images.apple.com/itunesaffiliates/US/2008/09/01/StandUp2Cancer_468x60.jpg'></a><IMG border='0' width='1' height='1' src='http://ad.linksynergy.com/fs-bin/show?id=GP/bYhdDzYI&bids=146261.10003519&type=4&subid=0'><br>";

// 4. MAGAZINELINE
images[3] = "<a href = 'http://click.linksynergy.com/fs-bin/click?id=XT/hs7fLYNY&offerid=86407.10000015&type=4&subid=0' target='_blank'><img src='http://www.magazineline.com/images/ls/234U4090.gif' alt='VELONEWS, BICYCLING magazines and more at Magazineline.com' border='0'></a><img border='0' width='1' height='1' src='http://ad.linksynergy.com/fs-bin/show?id=XT/hs7fLYNY&bids=86407.10000015&type=4&subid=0'>";

index = Math.floor(Math.random() * images.length);

document.write("\n");
document.write("" + "" + images[index] + "\n");
document.write("\n");
//done